下面是我网站原来的htaccess文件,我想使用新域名 www.duanzikong.cn 请问怎么修改文件实现301重定向,把www.jvhaoxiao.cn权重转移到新域名 www.duanzikong.cn 谢谢!!
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteEngine on
RewriteCond %{HTTP_HOST} ^jvhaoxiao.cn
RewriteRule ^(.*)$ http://www.jvhaoxiao.cn/1ドル [R=permanent,L]
#RewriteCond %{HTTP_HOST} ^(?![www|m])(.*).jvhaoxiao.cn
RewriteCond %{HTTP_HOST} ^((?!www|m).)(.*).jvhaoxiao.cn
RewriteRule ^(.*)$ http://www.jvhaoxiao.cn/1ドル [R=permanent,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/1ドル [QSA,PT,L]
</IfModule>