301 重定向 ASP.NET IIS

发布于 2024-11-06 09:00:16 字数 191 浏览 1 评论 0原文

我有一个网站,有别名:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伪心 2024-11-13 09:00:16

我建议使用 IIS 中的 URL 重写模块来重定向这些请求。像这样的东西可能会起作用(尽管这可能需要调整)...

<rewrite>
  <rules>
    <rule name="CanonicalHostNameRule1" stopProcessing="true">
      <match url="site?.com" />
      <conditions>
        <add input="{HTTP_HOST}" pattern="^www.site1.com$" negate="true" />
      </conditions>
      <action type="Redirect" url="http://www.site1.com/" redirectType="Permanent"/>
    </rule>
  </rules>
</rewrite>

编辑-忘记包含redirectType属性

I recommend using the URL Rewrite module in IIS to redirect these requests. Something like this might work (though this may need tweaking)...

<rewrite>
  <rules>
    <rule name="CanonicalHostNameRule1" stopProcessing="true">
      <match url="site?.com" />
      <conditions>
        <add input="{HTTP_HOST}" pattern="^www.site1.com$" negate="true" />
      </conditions>
      <action type="Redirect" url="http://www.site1.com/" redirectType="Permanent"/>
    </rule>
  </rules>
</rewrite>

EDIT - Forgot to include the redirectType attribute

吐个泡泡 2024-11-13 09:00:16

我认为更好的选择是在 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文