gpt4 book ai didi

iis-7 - .NET Url 重写根 url

转载 作者:行者123 更新时间:2023-12-04 22:00:45 24 4
gpt4 key购买 nike

我在 IIS7 中有以下规则:

    <rule name="RewriteAll" stopProcessing="true">
<match url="^([^/]+)/?$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{URL}" negate="true" pattern="\.axd$" />
<add input="{URL}" negate="true" pattern="\.png$" />
<add input="{URL}" negate="true" pattern="\.gif$" />
<add input="{URL}" negate="true" pattern="\.jpg$" />
<add input="{URL}" negate="true" pattern="\.css$" />
<add input="{URL}" negate="true" pattern="\.js$" />
</conditions>
<action type="Rewrite" url="default.aspx?page={R:1}" />
</rule>

捕获像 http://mysite.com/contact/ 这样的网址

我不知道用什么规则来捕捉 http://mysite.com/并发送到例如 home.aspx。谁能帮我匹配正则表达式

最佳答案

我通过添加以下规则来修复它:

 <rule name="Index Request" enabled="true" stopProcessing="true">
<match url="^$" />
<action type="Rewrite" url="index.aspx" logRewrittenUrl="true" />
</rule>

关于iis-7 - .NET Url 重写根 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5550777/

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