我有一个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>
慕尼黑8549860
繁星coding