我有一个使用umbraco cms的网站。单击网站上的链接时,URL将在结尾处显示正斜杠。例如www.mysite.com/home/
尽管如果我键入网址,它会显示www.mysite.com/home
正斜杠丢失。
有一个url重写配置,但我不确定是否需要在那里或web配置中创建配置。
我在这个网站上找到了一些similar to my situation的东西,但解决方法是相反的,去掉正斜杠
有人遇到这个问题或知道解决办法吗?
谢谢您。

最佳答案

我正在使用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>

关于c# - 在键入Umbraco站点的URL时添加正斜杠,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31670837/

10-10 14:31