我使用这个代码在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>