.htaccess301跳转,史上最全写法
有利于SEO集中权重(虽然目前还没权重),轻喷...
<IfModule mod_rewrite.c>
RewriteEngine on
##www.heziliang.cn/index.php和heziliang.cn/index.php重定向到techseo.cn
RewriteCond %{HTTP_HOST} ^(www\.)?heziliang\.cn$$ [NC]
RewriteCond %{REQUEST_URI} ^/index.php$$ [NC]
RewriteRule ^(.*)$$ http://techseo.cn/ [L,R=301]
##www.techseo.cn/index.php和techseo.cn/index.php重定向到techseo.cn
RewriteCond %{HTTP_HOST} ^(www\.)?techseo\.cn$$ [NC]
RewriteCond %{REQUEST_URI} ^/index.php$$ [NC]
RewriteRule ^(.*)$$ http://techseo.cn/ [L,R=301]
##www.heziliang.cn和heziliang.cn重定向到techseo.cn
RewriteCond %{HTTP_HOST} ^(www\.)?heziliang\.cn$$ [NC]
RewriteRule ^(.*)$$ http://techseo.cn/$$1 [L,R=301]
##www.techseo.cn重定向到techseo.cn
RewriteCond %{HTTP_HOST} ^www\.techseo\.cn$$ [NC]
RewriteRule ^(.*)$$ http://techseo.cn/$$1 [L,R=301]
</IfModule>
完毕,欢迎交流
后续补充伪静态的写法