如果不存在默认文档,则重写 IIS web.config

我有一个IIS,如果没有定义的页面(即),web.config它可以部分地重写对另一个本地文件夹的请求。wwwrootindex.php


因此,像这样的 url:www.blah.net/something/index.php会正确显示页面。但是,www.blah.net/something/重写到另一个 URL 并忽略index.php该目录中的 。


<configuration>

<system.webServer>

<defaultDocument enabled="true" />


<rewrite>

            <rules>

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

                    <match url="(.*)" />

                    <conditions logicalGrouping="MatchAll">

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

                    </conditions>

                    <action type="Rewrite" url="_h5ai/public/index.php" appendQueryString="true" />

                </rule>

            </rules>

</rewrite>


        <caching enabled="false" enableKernelCache="true" />

</system.webServer>

</configuration>


狐的传说
浏览 162回答 2
2回答

慕尼黑8549860

相当简单,只需添加一个条件来检查文件是否存在。<conditions><add input="{Document_Root}/{REQUEST_URI}/index.php" matchType="IsFile" negate="true" /></conditions>另外,请在清除本地浏览器缓存后或在浏览器的隐身窗口中验证结果。如果问题仍然存在,请随时告诉我。

繁星coding

我认为你需要告诉 IIS 你的默认文档是什么。更换线路<defaultDocument enabled="true" />和<defaultDocument>&nbsp; <files>&nbsp; &nbsp; <clear />&nbsp; &nbsp; <add value="index.php" />&nbsp; &nbsp; <add value="index.htm" />&nbsp; &nbsp; <add value="default.php" />&nbsp; &nbsp; <add value="default.htm" />&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; </files></defaultDocument>IIS 将按照列出的顺序检查默认文档部分中列出的所有文件名,您可以拥有任意数量的文件名。该<clear />行告诉 IIS 忽略标准服务器设置。(如果您没有指定任何默认文件,我认为它会查找“Default.htm”、“Default.aspx”和“Default.asp”。)
打开App,查看更多内容
随时随地看视频慕课网APP