我在我网站的一个文件夹中的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>
Run Code Online (Sandbox Code Playgroud)
但我需要对此规则进行例外处理:我不希望我的页面"default.aspx"被重定向.我怎样才能做到这一点?