返回上一页

seo优化公司

当前位置:首页 > 网络技术

windows2008服务器下 iis7 伪静态配置后报错 错误代码 0x8007010b时间:2014-09-15

 错误代码 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>  
 
 
对照着和伪静态规则补齐在一起就可以了。。
服务推荐