前端之家收集整理的这篇文章主要介绍了
ASP.NET httpRedirect:重定向所有页面,除了一个,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用这个
代码在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>
但是我需要对这个规则做一个例外:我不希望我的页面“default.aspx”被重定向。我怎样才能做到这一点?
您可以按以下方式
添加通配符,仅
重定向某些
文件:
<configuration>
<system.webServer>
<httpRedirect enabled="true" exactDestination="true" httpResponseStatus="Found">
<add wildcard="*.PHP" destination="/default.htm" />
</httpRedirect>
</system.webServer>
</configuration>
但是我不知道你是否可以否定这一点,所以它忽略了某个文件。
原文链接:https://www.f2er.com/aspnet/252957.html