我有一个域 abc.ca 已经在运行,谷歌抓取了那个 url。
现在我要去 abc.com
那么我如何管理 abc.ca -> abc.com 的所有 URL
使用 htacees。网站是用 PHP Joomla 构建的。
abc.ca/def.html -> abc.com/def.html
有数千页。我不能在 htaccess 中编写单独的 301 重定向。
我们可以在 PHP 中做到这一点
$uri = "http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
$newUrl = str_replace(".ca", ".com", $uri);
header("Location: " . $newUrl);
最好在 PHP 站点或 htaccess 站点上做?