子網域的GeoIP 重新導向
要依照使用者所在國家的IP 位址設定將使用者自動重新導向到對應的子域,請依照以下步驟操作:
<code class="php"><?php require_once('geoplugin.class.php'); $geoplugin = new geoPlugin(); $geoplugin->locate(); $var_country_code = $geoplugin->countryCode; 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/'); } ?></code>
以上是如何實現基於GeoIP定位的子網域重新導向?的詳細內容。更多資訊請關注PHP中文網其他相關文章!