htaccess设置301重定向的方法:打开.htaccess文件,加入以下规则,例如:yisu.com重定向到www.yisu.comRewriteEngine On RewriteCond %{Http_HOST} ^yisu.com
htaccess设置301重定向的方法:
打开.htaccess文件,加入以下规则,例如:
yisu.com重定向到www.yisu.com
RewriteEngine On
RewriteCond %{Http_HOST} ^yisu.com [NC]
RewriteRule ^(.*)$ http://www.yisu.com/$1 [L,R=301]
www.yisu.com重定向到yisu.com
RewriteEngine On
RewriteCond %{HTTP_HOST} !yisu.com$ [NC]
RewriteRule ^(.*)$ http://yisu.com/$1 [L,R=301]
oldyisu.com重定向到www.newyisu.com
RewriteEngine On
RewriteCond %{HTTP_HOST} !oldyisu.com$ [NC]
RewriteRule ^(.*)$ http://www.newyisu.com/$1 [L,R=301]
oldyisu.com重定向到newyisu.com
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !oldyisu.com$ [NC]
RewriteRule ^(.*)$ http://newyisu.com/$1 [L,R=301]
yisu.com/file/file.PHP重定向到otheryisu.com/otherfile/other.php
RewriteCond %{HTTP_HOST} ^www.yisu.com$
RewriteRule ^file/file.php$ http://www.otheryisu.com/otherfile/other.php [R=301,L]
--结束END--
本文标题: htaccess怎么设置301重定向
本文链接: https://lsjlt.com/news/115689.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0