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>

比较着和伪静态法则补齐在一起就可以了。。

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

转载注明出处:https://www.heiqu.com/8332.html