gpt4 book ai didi

asp.net - IIS URL 重写 : Add trailing slash except for . html 和 .aspx

转载 作者:行者123 更新时间:2023-12-01 11:55:42 26 4
gpt4 key购买 nike

通过 IIS URL Rewrite Module 为所有 URL 添加尾部斜杠被广泛传播,但是我如何 为以 .html 和 .aspx 结尾的 URL 添加异常(exception) ?

今天我有这个:

<rule name="Add trailing slash" stopProcessing="true">
<match url="(.*[^/])$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<!-- Doesn't seem to be working -->
<!--<add input="{REQUEST_URI}" pattern="(.*?).html$" negate="true" />-->
<!--<add input="{REQUEST_URI}" pattern="(.*?).aspx$" negate="true" />-->
</conditions>
<action type="Redirect" redirectType="Permanent" url="{R:1}/" />
</rule>

最佳答案

如果你想把事情做好,你必须自己做,很明显......

这是我的问题的解决方案:

<rule name="Add trailing slash" stopProcessing="true">
<match url="(.*[^/])$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_FILENAME}" pattern="(.*?)\.html$" negate="true" />
<add input="{REQUEST_FILENAME}" pattern="(.*?)\.aspx$" negate="true" />
</conditions>
<action type="Redirect" redirectType="Permanent" url="{R:1}/" />
</rule>

更新 : I blogged about this in more detail .

关于asp.net - IIS URL 重写 : Add trailing slash except for . html 和 .aspx,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12724455/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com