我想永久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>
答案 0 :(得分:0)