我的网站重定向到www.www.sitename.com时出现此问题。
我有这个用web.config编写的代码,对我的其他网站工作正常。
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="Redirect to WWW" enabled="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" negate="true" pattern="^www\.([.a-zA-Z0-9]+)$" />
</conditions>
<action type="Redirect" url="http://www.{HTTP_HOST}/{R:0}" appendQueryString="true" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
这是其他网站的100%工作代码,但在此网站上存在www.www.sitename.com的问题 srilanka-tours.co
答案 0 :(得分:1)
如何减少通用性并更专注于您的实际主机名?
E.g:
<rule name="Redirect to WWW">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^www\.srilanka-tours\.co$" negate="true" />
</conditions>
<action type="Redirect"
url="http://www.srilanka-tours.co/{R:1}"
redirectType="Permanent" />
</rule>
(这是现实世界重写规则的摘录)。
以上规则类似于使用&#34;规范域名&#34;在IIS管理器&#39; &#34;向导&#34;用于创建重写规则。 See the article on Scott Guthrie's blog