gpt4 book ai didi

IIS URL 重写

转载 作者:行者123 更新时间:2023-12-02 00:44:56 25 4
gpt4 key购买 nike

好吧,这让我发疯了......我正在尝试像这样重写我的网址:

Now:
http://www.somedomain.com/Somepage.aspx
http://www.somedomain.com/AnotherPage.aspx

Desired:
http://www.somedomain.com/somepage/
http://www.somedomain.com/anotherpage/

谁能帮我解决这个问题?用户界面中的术语非常困惑。

谢谢。

最佳答案

我找到了答案:

<rewrite>
<rules>
<rule name="Redirect" stopProcessing="true">
<match url="^([^\.]+)\.aspx$" />
<conditions>
<add input="{REQUEST_METHOD}" negate="true" pattern="^POST$" />
</conditions>
<action type="Redirect" url="{ToLower:{R:1}}/" appendQueryString="false" redirectType="Permanent" />
</rule>
<rule name="Rewrite" stopProcessing="true">
<match url="^([^/]+)/$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="{R:1}.aspx" />
</rule>
</rules>
</rewrite>

关于IIS URL 重写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1089183/

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