HTACCESS 重定向 —旧域名到新域名,*除了*主页?
我使用以下方法将流量从旧域重定向到新域:
RewriteCond %{HTTP_HOST} ^(www\.)?olddomain\.com [NC]
RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301,L]
效果很好,但我实际上需要将直接访问旧站点主页的流量重定向到其他位置。我如何添加这个例外?
I'm using the following to redirect traffic from an old domain to a new one:
RewriteCond %{HTTP_HOST} ^(www\.)?olddomain\.com [NC]
RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301,L]
It works great, but I need to actually redirect traffic going directly to the old site's home page to a different location. How do I add this exception?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用以下内容:
根据您发送主页请求的位置,这可能需要进行一些更改,但本质上,您需要检查每个
的
。%{REQUEST_URI}
的内容重写规则希望这有帮助...
Try using the following:
Depending on where you are sending the requests for the homepage, this may need to change some, but essentially, you need to check the content of
%{REQUEST_URI}
for eachRewriteRule
.Hope this helps...