如何根据国家IP地址重定向域名

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

例:

主站点是abcd.com

  • 假设来自印度的某个人键入此 url abcd.com,
  • ,然后将页面重定向到ind.abcd.com

答案 1

从以下位置下载 geoPlugin 类:

http://www.geoplugin.com/_media/webservices/geoplugin.class.phps

(免费查找限制为每分钟 120 个请求,如果超出限制,则阻止 1 小时。该块将在服务器上次停止每分钟发送超过 120 个请求后 1 小时自动删除)

索引.php文件放在根文件夹中:

<?php
require_once('geoplugin.class.php');
$geoplugin = new geoPlugin();
$geoplugin->locate();
// create a variable for the country code
$var_country_code = $geoplugin->countryCode;
// redirect based on country code:
if ($var_country_code == "AL") {
header('Location: http://sq.wikipedia.org/');
}
else if ($var_country_code == "NL") {
header('Location: http://nl.wikipedia.org/');
}
else {
header('Location: http://en.wikipedia.org/');
}
?>

以下是国家/地区代码列表:

http://www.geoplugin.com/iso3166


答案 2

检查服务器上是否安装了mod_geoip模块(GeoIP 扩展)。

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

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...

这是官方文档


推荐