301 重定向 ASP.NET IIS
我有一个网站,有别名:
site1.com
site2.com
site3.com
但它们都是同一个网站。
我需要 ASP.NET 的规则,该规则将允许 site3.com 和site2.com 重定向到 www.site1.com,状态为 301
I have a site, that has aliases:
site1.com
site2.com
site3.com
But they are all the same site.
I need the rules for asp.net, that will allow site3.com & site2.com to redirect to www.site1.com with status 301
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议使用 IIS 中的 URL 重写模块来重定向这些请求。像这样的东西可能会起作用(尽管这可能需要调整)...
编辑-忘记包含redirectType属性
I recommend using the URL Rewrite module in IIS to redirect these requests. Something like this might work (though this may need tweaking)...
EDIT - Forgot to include the redirectType attribute
我认为更好的选择是在 IIS 中设置这些内容。在 IIS7 中,您可以为不需要的域创建一个站点(甚至是虚拟目录),然后在“HTTP 重定向”部分中您可以设置目标和所需的 HTTP 状态代码。
如果由于某种原因您无法通过 IIS 执行此操作,请尝试在 SO 中搜索编码解决方案:
https://stackoverflow.com/search?q=asp.net+301+redirect
I think a better option is to set these things in IIS. In IIS7 you can create a site (or even a virtual dir) for the unwanted domains, then in the 'HTTP redirect' section you can set the destination and your desired HTTP status code.
If for some reason you cannot do this via IIS try searching SO for coded solutions:
https://stackoverflow.com/search?q=asp.net+301+redirect