我们在Azure上托管了一个简单的HTML asp.net网站,当我们在浏览器中复制粘贴子页面URL(没有WWW)时,我们面临重定向问题。 示例:www.example.com/subpage.aspx工作正常,但在复制粘贴example.com/subpage.aspx时,它会重定向到www.example.comsubpage.aspx /(Frankly dunno where& how itly)
以下代码是在live.web中的web.config文件中编写的(除了确切的域名)
<rewrite>
<rules>
<rule name="RedirectToWWW" stopProcessing="false">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^example\.com$" />
</conditions>
<action type="Redirect" url="http://www.example.com/{R:0}" />
</rule>
</rules>
</rewrite>
这个项目的新手,所以我应该在哪里开始调查或者我应该在哪里提供修复的任何指导将非常有帮助。
答案 0 :(得分:0)
更改为:
<action type="Redirect" url="http://www.eyeswidewhat.net/{R:1}" />
另外,请将stopProccessing
设为true
。