Welcome

首页 / 网页编程 / ASP.NET / IIS集成PHP,运行ThinkPHP5.X时的web.config配置方式

IIS集成PHP,运行ThinkPHP5.X时的web.config配置方式

        <rewrite>

            <rules>

                <rule name="ThinkPHP" stopProcessing="true">

                    <match url="^(.*)$" ignoreCase="false" />

                    <conditions logicalGrouping="MatchAll">

                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />

                        <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />

                    </conditions>

                    <action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" />

                </rule>

            </rules>

        </rewrite>