更换新域名,旧的域名做301{yj}重定向到新域名。.htacess文件放在旧域名根目录下。保持新旧网站目录结构xx一致。
用记事本创建.htaccess文件,文件内容 例
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://goofox.com/$1 [R=301,L]
其它
用301将不带WWW的域名重定向
rewriteEngine on
rewriteCond %{http_host} ^goofox.com [NC]
rewriteRule ^(.*)$ http://www.goofox.com/$1 [R=301,L]
用301将绑定的其他域名重定向到主域名
RewriteEngine on
RewriteCond %{HTTP_HOST} ^其他域名.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.其他域名.com$
RewriteRule ^(.*)$ http://www.主域名.com/$1 [R=301,L]
当然,也可以再扩展一下,将index.html、index.php等也重定向一下:
RewriteEngine on
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ http://www.goofox.com/ [R=301,L]
可以用这个免费工具检查一下转向的效果:
http://www.internetofficer.com/seo-tool/redirect-check/