在你的空间根目录下,增加一个web.config文件,内容如下
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <staticContent> <mimeMap fileExtension=".json" mimeType="text/json" /> </staticContent> <defaultDocument> <files> <add value="test/index.html" /> </files> </defaultDocument> </system.webServer> </configuration>如果你的根目录下面没有别的文件,比如index.html,他就会默认蹦到test目录下的index.html。如果有别的文件,还有强行配置,参考下面这个
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <staticContent> <mimeMap fileExtension=".json" mimeType="text/json" /> </staticContent> <defaultDocument> <files> <remove value="default.aspx" /> <remove value="iisstart.htm" /> <remove value="index.html" /> <remove value="index.htm" /> <remove value="Default.asp" /> <remove value="Default.htm" /> <add value="guoYouZiChanglc/index.html" /> </files> </defaultDocument> </system.webServer> </configuration>