我不相信這對 .htaccess 是可能的。我有多個域:
domain.mx domain.com domain.ca
我想根據使用者位置強製本地化 TLD。如果使用者來自墨西哥,並造訪domain.com/test/a/,他們將在第一次造訪時被導向到domain.mx/test/a。從那裡,網站將自動將用戶保留在 .mx
這是我目前的 PHP 解決方案,但我不確定重寫規則是否可能或更快:
add_action( 'template_redirect', 'my_callback' ); function my_callback() { $userCountry = $_SERVER["HTTP_CF_IPCOUNTRY"]; $baseurl = $_SERVER[HTTP_HOST]; $url = $_SERVER[REQUEST_URI]; // Mexico if (($userCountry == "MX") && (strpos($baseurl, 'mx') == false)) { $newurl = "https://domain.mx" . $url; wp_redirect( $newurl, 301 ); exit(); }
P粉4773692692024-01-11 14:45:43
RewriteCond %{HTTP:CF-IPCountry} = MX RewriteRule .* https://domain.mx%{REQUEST_URI} [R=301,L,QSA]
文件:https://httpd.apache.org/docs /2.4/mod/mod_rewrite.html#rewritecond
但也要考慮到用戶可能故意嘗試造訪與其位置不符的網站,例如:加拿大的西班牙語用戶。我建議允許使用者設定他們想要的區域設置,將該首選項儲存在 cookie 中,並使用 %{HTTP_COOKIE}
來控制重寫行為。