这些脚本应该放在 .htaccess 文件中。
//*301 Redirect: xyz-site.com to www.xyz-site.com
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www.xyz-site.com$ [NC]
RewriteRule ^(.*)$ http://www.xyz-site.com/$1 [L,R=301]
//*301 Redirect: www.xyz-site.com to xyz-site.com
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^xyz-site.com$ [NC]
RewriteRule ^(.*)$ http://xyz-site.com/$1 [L,R=301]
//*301 Redirect: Redirecting Individual pages
Redirect 301 /previous-page.html http://www.xyz-site.com/new-page.html
或者你可以使用
使用 PHP 重定向
<?php
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.xyz-site.com" );
exit(0);
?>