如何根据国家IP地址重定向域 [英] how to redirect domain according to country IP address

查看:432
本文介绍了如何根据国家IP地址重定向域的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我做了一个网站,它的一些子域名;根据国家的IP地址,该用户将被自动重定向到相应的子域。

I made a site it with some subdomains; according to the country's IP address the user is supposed to be automatically redirected to corresponding subdomain.

示例:

主要网站是 abcd.com

  • 假设有一个人从印度输入这个网址abcd.com,
  • 然后将页面重定向到 ind.abcd.com
  • Suppose some one from India typed this url abcd.com,
  • then the page redirects to ind.abcd.com

推荐答案

确认你有 mod_geoip 模块(< STRONG> GeoIP的扩展)安装到服务器上。

Check that you have the mod_geoip module (GeoIP Extension) installed on your server.

然后,调整你的的.htaccess 相应文件:

Then, tweak your .htaccess file accordingly :

GeoIPEnable On
GeoIPDBFile /path/to/GeoIP.dat

# Start Redirecting countries

# Canada
RewriteEngine on
RewriteCond %{ENV:GEOIP_COUNTRY_CODE} ^CA$
RewriteRule ^(.*)$ http://ca.abcd.com$1 [L]

# India
RewriteEngine on
RewriteCond %{ENV:GEOIP_COUNTRY_CODE} ^IN$
RewriteRule ^(.*)$ http://in.abcd.com$1 [L]

# etc etc etc...


和这里的官方文档

这篇关于如何根据国家IP地址重定向域的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆