绕过Geo Redirect以获取特定目录

时间:2015-06-04 16:18:03

标签: php wordpress .htaccess redirect geolocation

我试图绕过我网站中特定网址的重定向。想知道是否有人可以提供帮助。

以下代码是我使用的代码,原始网址由example.com替换

我希望能够在没有重定向的情况下访问http://example.com/admin

有没有办法做到这一点,还有一种方法可以使用您自己的IP吗?

    function country_geo_redirect()
{

    $country = getenv('HTTP_GEOIP_COUNTRY_CODE');
    if ($country == "US" ) {
        wp_redirect("http://usa.example.com/");
        exit;
    }
    else if ($country == "GB" )
    {
        wp_redirect("http://uk.example.com/");
        exit;
    }
}
add_action('init', 'country_geo_redirect');

1 个答案:

答案 0 :(得分:0)

如果服务器找到了您的IP地址,您可以绕过重定向代码。

char