1

MindTouch Core を IIS8 にインストールしようとしています。インストールは正常に機能しますが、次のメッセージが表示されます。どういう意味ですか?

ASP.NET が完全にインストールされているため、問題になることはありません。また、アプリケーション プールの問題ではありません。すべて試しました。

サイトのweb.configファイルは次のとおりです。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <validation validateIntegratedModeConfiguration="false"/>
        <handlers accessPolicy="Read, Execute, Script">
            <clear/>
            <add name="PHP via FastCGI" path="*.php" verb="*" modules="FastCgiModule" resourceType="Unspecified" scriptProcessor="D:\MindTouch\redist\php\php-cgi.exe"/>
            <add name="StaticFile" path="*" verb="*" type="" modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" scriptProcessor="" resourceType="Either" requireAccess="Read" preCondition=""/>            
        </handlers>
        <isapiFilters>
            <filter name="IsapiRewrite4" path="D:\MindTouch\web\bin\IsapiRewrite4.dll"/>
        </isapiFilters>
        <defaultDocument>
            <files>
                <add value="index.php"/>
            </files>
        </defaultDocument>
    </system.webServer>  
</configuration>
4

1 に答える 1

1

このエントリに記載されている調査手順を確認し、コメントと回答を確認して、問題がある程度絞り込まれていないかどうかを確認します 。DefaultDocumentが突然IIS7で機能しなくなった

この記事では、グローバルモジュールについて詳しく説明します: http ://www.iis.net/learn/get-started/introduction-to-iis/iis-modules-overview

于 2013-01-15T04:03:12.543 に答える