编辑.htaccess文件,不带www,301跳转到带www的域名:
- RewriteEngine on
- RewriteCond %{HTTP_HOST} ^taovps.com$
- RewriteRule ^(.*)$ http://taovps.net [R=301,L]
旧域名example.com做301跳转到新域名taovps.net :
- RewriteEngine on
- RewriteCond %{HTTP_HOST} ^www.example.com$ [OR]
- RewriteCond %{HTTP_HOST} ^example.com$
- RewriteRule ^(.*)$ http://taovps.net [R=301,L]
Comments Closed