gpt4 book ai didi

ASP.NET httpRedirect : redirect all pages except one

转载 作者:行者123 更新时间:2023-12-03 11:33:29 25 4
gpt4 key购买 nike

我在我网站的一个文件夹中的 web.config 中使用此代码将所有页面重定向到根目录,因为我想永久关闭此部分。

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<location>
<system.webServer>
<httpRedirect enabled="true" destination="http://www.example.com/" httpResponseStatus="Permanent" />
</system.webServer>
</location>
</configuration>

但是我需要对这条规则做一个异常(exception):我不希望我的页面“default.aspx”被重定向。我怎样才能做到这一点?

最佳答案

您可以通过以下方式添加通配符,以仅重定向某些文件:

    <configuration>
<system.webServer>
<httpRedirect enabled="true" exactDestination="true" httpResponseStatus="Found">
<add wildcard="*.php" destination="/default.htm" />
</httpRedirect>
</system.webServer>
</configuration>

但是我不确定您是否可以否定它,以便它忽略某个文件。

关于ASP.NET httpRedirect : redirect all pages except one,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7325831/

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