我有一个使用URLRewrite 2的ASP.NET网站从URL中删除尾部斜杠。
我们注意到Mac上的Safari不遵守此规则。它总是在URL中留下尾部斜杠。 SEO Moz显示两个URL似乎是潜在的重复内容问题。
以下是我们的Web.Config中的URLRewrite规则
<rule name="Remove trailing slash" stopProcessing="true">
<match url="(.*)/$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Redirect" redirectType="Permanent" url="{R:1}" />
</rule>
以下是相关网站:http://www.kurtzandblum.com/(除非在Safari中删除斜杠)
我试图决定是否......
谷歌表示斜线或没有斜线将起作用http://googlewebmastercentral.blogspot.com/2010/04/to-slash-or-not-to-slash.html
感谢您的任何见解。
答案 0 :(得分:1)
Safari正在处理URL。对SEO没有影响,所以你不需要做任何事情。
您的网址在Chrome中看起来很不错。