301重定向 - 尾随斜杠web.config

时间:2015-04-14 07:05:56

标签: asp.net redirect web.config-transform

我想永久301从 http://www.example.com/ 重定向到 http://www.example.com

我曾在web.config中尝试过以下代码,但无法正常工作。 我还有其他任何改变吗?

<rule name="SEO - Remove trailing slash" stopProcessing="false">
         <match url="(.*)/$" />
         <conditions>
           <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
           <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
         </conditions>
         <action type="Redirect" url="{R:1}" />
       </rule>

1 个答案:

答案 0 :(得分:0)