ASP.NET IIS7 的永久 301 重定向

发布于 2025-01-01 15:50:22 字数 808 浏览 0 评论 0原文

我试图弄清楚如何为放置在 Microsoft-IIS/7.0 类型服务器上的网站设置 301 永久重定向。 假设我有域名 www.A.com 并且我想将其重定向到 www.B.com 我可以在我的 web.config 文件中使用类似以下内容:

<configuration>
<system.webServer>
<rewrite>
   <rules>
      <rule name="Redirect to WWW" stopProcessing="true">
        <match url="A.com" />
        <conditions>
            <add input="{HTTP_HOST}" pattern="^www.B.com$" />
   </conditions>
   <action type="Redirect" url="http://www.B.com/{R:0}"
        redirectType="Permanent" />
   </rule>
 </rules>
</rewrite>
</system.webServer>
</configuration>

将 web.config 放在根目录中时,服务器回复:

403 - 禁止:访问被拒绝。 您无权使用您提供的凭据查看此目录或页面。

有什么建议为什么会出现这个 403 错误吗?

提前致谢。

Im trying to figure out how to setup a 301 permanent redirect for a website that is placed on a Microsoft-IIS/7.0 type server.
So let's say I have domain www.A.com and I want to redirect this to www.B.com I could use something like the following in my web.config file:

<configuration>
<system.webServer>
<rewrite>
   <rules>
      <rule name="Redirect to WWW" stopProcessing="true">
        <match url="A.com" />
        <conditions>
            <add input="{HTTP_HOST}" pattern="^www.B.com$" />
   </conditions>
   <action type="Redirect" url="http://www.B.com/{R:0}"
        redirectType="Permanent" />
   </rule>
 </rules>
</rewrite>
</system.webServer>
</configuration>

When placing the web.config in the root directory, the server responds:

403 - Forbidden: Access is denied.
You do not have permission to view this directory or page using the credentials that you supplied.

Any suggestion why this 403 error is given?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

沉鱼一梦 2025-01-08 15:50:22

如果您在普通(默认)web.config 和完全普通的 Default.aspx 中遇到 403 错误,则 IIS 存在配置问题。应用程序池很可能没有网站基本文件夹的权限。听起来您处于托管状态,因此请联系系统管理员。

If you are getting a 403 error with a plain (default) web.config and totally vanilla Default.aspx, then there is a configuration problem with IIS. Most likely the app pool does not have rights to the base folder for the website. Sounds like you're in a hosted situation so contact the system administrator.

岁月打碎记忆 2025-01-08 15:50:22

这应该可行并且也更简单。您不需要 URL 重写,只需 HTTP 重定向。

至于 403,IIS 应用程序池是否具有对站点根目录文件夹的读取权限?

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <httpRedirect enabled="true" destination="www.B.com" httpResponseStatus="Permanent" />
    </system.webServer>
</configuration>

This should work and also be much simpler. You don't need URL rewriting, just HTTP redirect.

As for the 403, does the IIS application pool have read access to the folder at the root of your site?

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <httpRedirect enabled="true" destination="www.B.com" httpResponseStatus="Permanent" />
    </system.webServer>
</configuration>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文