IIS7.5 URL 重写规则执行从 mysite.hosting.com 到 mysite.co.uk 的 301 重定向
我使用 IIS 7.5
我有一个网站,该网站具有有效的主机,例如:
A) mysite.co.uk
和默认主机(用于托管公司提供的测试建议):
B) mysite.hosting.com
网站在两者上均可见地址,为搜索引擎创建重复内容问题。
我需要使用 301 重定向将所有流量(所有页面)从 B 重定向到 A。
IIS7.5 Http Redirect 它不是为这种情况设计的,所以我想使用 IIS 7.5 Url Rewrite Module。
我的问题:如何在我的 web.config 中写入 ROLE?谢谢
I use IIS 7.5
I have a website wich has a valid host like:
A) mysite.co.uk
and a DEFAULT host (using for testing proposes provided by the hosting company):
B) mysite.hosting.com
Website is visible on both address, creating a DUPLICATE CONTENT issue for Search Engine.
I need redirect all the traffic (for all pages) from B to A using a 301 redirect.
IIS7.5 Http Redirect it is not design for this situation so I suppose to use IIS 7.5 Url Rewrite Module.
My questions: how write the ROLE in my web.config? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在
web.config
中的
标记之间添加类似的内容:或者,您可以通过添加以下内容使用全局规则来执行此操作:
Try adding something like this between the
<System.webServer>
tags in yourweb.config
:Alternatively, you can do this using global rules by adding: