web.config 457 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <system.webServer>
  4. <defaultDocument>
  5. <files>
  6. <clear />
  7. <add value="index.html" />
  8. <add value="Default.htm" />
  9. <add value="Default.asp" />
  10. <add value="index.htm" />
  11. <add value="iisstart.htm" />
  12. </files>
  13. </defaultDocument>
  14. </system.webServer>
  15. </configuration>