我试图弄清楚如何为放置在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错误?
提前致谢。
答案 0 :(得分:1)
如果您使用普通(默认)web.config和完全vanilla Default.aspx收到403错误,则IIS存在配置问题。很可能应用程序池没有网站基本文件夹的权限。听起来像是处于托管状态,所以请联系系统管理员。
答案 1 :(得分:0)
这应该有效,也可以更简单。您不需要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>