windows2008服务器下 iis7 伪静态配置后报错 错误代码 0x8007010b

错误代码 0x8007010b,查阅无数资料。。依旧无解!

最终发现问题出在根目录的web.config 里面少了一段代码。。。

<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <defaultDocument> <files> <remove value="default.aspx" /> <remove value="iisstart.htm" /> <remove value="Default.asp" /> <remove value="Default.htm" /> <add value="index.php" /> </files> </defaultDocument> <handlers> <remove /> <add path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="D:\php5.2.5\php-cgi.exe" resourceType="Unspecified" requireAccess="Script" /> </handlers> <staticContent> <mimeMap fileExtension=".apk" mimeType="application/vnd.android.package-archive" /> <mimeMap fileExtension=".ipa" mimeType="application/iphone" /> </staticContent> </system.webServer> </configuration>

对照着和伪静态规则补齐在一起就可以了。。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/2ebb987c1d6ee9f7937e484962c7cec2.html