gpt4 book ai didi

iis-7 - 简单的尾部斜杠 URL 重写

转载 作者:行者123 更新时间:2023-12-02 00:11:45 26 4
gpt4 key购买 nike

我从来没有做过 URL 重写(重定向)。我有一个网站http://sub.sub.domain.ext/app/ . “app”表示“应用程序”,而不是虚拟目录。当用户导航到 http://sub.sub.domain.ext/app 时(没有斜线)我需要 IIS 7 将他重定向到带有尾部斜线的 URL。

问题是我希望规则在用户导航到应用程序时应用。我不希望将尾部斜杠附加到每个文件名。

我曾尝试修改 IIS7 管理器中的预定义规则,但没有成功。我尝试过完全匹配整个 URL、限制条件或简单地使用原始预定义规则。但即使使用原始规则,它也会重写所有后续请求文件/目录/URL,但它不会将用户从 http://sub.sub.domain.ext/app 重定向至 http://sub.sub.domain.ext/app/ .

最佳答案

您正在寻找的规则可能很简单:

<rule name="Add trailing slash" stopProcessing="true">
<match url="^app$" negate="false" />
<action type="Redirect" url="{R:0}/" />
</rule>

url="^app$" 模式只匹配 url http://www.yourwebsite.com/app 而没有其他。
如果您需要将此行为限制在主机 sub.sub.domain.ext 中,您可以添加一个条件:

<rule name="test" stopProcessing="true">
<match url="^app$" negate="false" />
<action type="Redirect" url="{R:0}/" />
<conditions>
<add input="{HTTP_HOST}" pattern="^sub.sub.domain.ext$" />
</conditions>
</rule>

关于iis-7 - 简单的尾部斜杠 URL 重写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14875223/

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