gpt4 book ai didi

asp.net - 如何从 Web.config (ASP.NET) 中的规则中排除目录

转载 作者:行者123 更新时间:2023-12-04 17:16:48 25 4
gpt4 key购买 nike

我在我的 Web.config 中设置了这些规则:

    <rules>
<rule name="replacedash">
<match url="(.*)(-)(.*)\.aspx$" />
<action type="Redirect" url="{R:1}{R:3}" redirectType="Permanent" />
</rule>
<rule name="extensionless" stopProcessing="true">
<match url="(.*)\.aspx$" />
<action type="Redirect" url="{R:1}" redirectType="Permanent" />
</rule>
<rule name="removeextension" enabled="true">
<match url=".*" negate="false" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{URL}" pattern="(.*)\.(.*)" negate="true" />
</conditions>
<action type="Rewrite" url="{R:0}" />
</rule>
</rules>

我已经将我的网站从普通的 ASP.NET 升级到 ASP.NET MVC,我编写了这些规则,以防万一搜索引擎中仍然存在一些带有 .aspx 扩展名的旧缓存链接;但是,我的 Web 服务器上有一些目录仍然包含 .aspx 文件,这是有充分理由的,我的规则也在重写这些扩展名。

如何从继承我的规则中排除这些文件夹?

最佳答案

基于以下解决方案:

How to exclude a directory with IIS URL rewriting?

你可以这样做:

<rules>
<rule name="ignore web forms folder 1" stopProcessing="true">
<match url="^webformsfolder1/" />
<action type="None" />
</rule>
<rule name="ignore web forms folder 2" stopProcessing="true">
<match url="^webformsfolder2/" />
<action type="None" />
</rule>
<rule name="ignore web forms folder 3" stopProcessing="true">
<match url="^webformsfolder3/" />
<action type="None" />
</rule>
<rule name="replacedash">
<match url="(.*)(-)(.*)\.aspx$" />
<action type="Redirect" url="{R:1}{R:3}" redirectType="Permanent" />
</rule>
<rule name="extensionless" stopProcessing="true">
<match url="(.*)\.aspx$" />
<action type="Redirect" url="{R:1}" redirectType="Permanent" />
</rule>
<rule name="removeextension" enabled="true">
<match url=".*" negate="false" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{URL}" pattern="(.*)\.(.*)" negate="true" />
</conditions>
<action type="Rewrite" url="{R:0}" />
</rule>
</rules>

关于asp.net - 如何从 Web.config (ASP.NET) 中的规则中排除目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38880002/

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