我有一个使用Umbraco CMS的网站。单击网站上的链接时,网址将在末尾显示正斜杠。例如www.mysite.com/home /
虽然如果我输入网址,它会显示www.mysite.com/home
正斜杠丢失了。
有一个URL重写配置,但我不确定是否需要在那里或在Web配置中创建配置。
我在这个网站上找到了similar to my situation,但解决方法是相反的,删除正斜杠
有没有人遇到这个问题或知道解决方案?
谢谢。
答案 0 :(得分:3)
我正在使用web.config来做到这一点。
<system.webServer>
...
<rewrite>
<rules>
<rule name="Add trailing slash" stopProcessing="true">
<match url="(.*[^/{2,}])$" ignoreCase="true" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_URI}" pattern="^/umbraco/" negate="true" />
<add input="{REQUEST_URI}" pattern="^/install/" negate="true" />
<add input="{REQUEST_URI}" pattern="^/([0-9]+).aspx" negate="true" />
<add input="{URL}" pattern="^.*\.(asp|aspx|axd|asmx|css|js|jpg|jpeg|png|gif|mp3|htm)$" negate="true" ignoreCase="true" />
<add input="{URL}" pattern="/Base" negate="true" />
<add input="{URL}" pattern="cdv=1" negate="true" />
</conditions>
<action type="Redirect" redirectType="Permanent" url="{R:1}/" />
</rule>
</rules>
</rewrite>
...
</system.webServer>