windows2008服务器下 iis7 伪静态配置后报错 错误代码 0x8007010b
2014-09-15 15:23:14
错误代码 0x8007010b,查阅无数资料。。依旧无解!
最终发现问题出在根目录的web.config 里面少了一段代码。。。
[plain] view plaincopy在CODE上查看代码片派生到我的代码片
<?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 name="FastCgiModule" />
<add name="FastCgiModule" 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>
对照着和伪静态规则补齐在一起就可以了。。