我有一个由 goddady 托管的寡妇机器,我需要创建一个规则来转发任何带有指向不存在文件的 URL 的请求,以发送到 index.php。通常我会使用 .htaccess 来做到这一点,但它在 Windows 主机中有所不同。
问问题
665 次
1 回答
0
我找到了答案。我必须在根目录中放置一个名为“web.conf”的 xml 文件,它的工作方式与 .htaccess 相同。我从ZendFramework 站点获取了规则
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^.*$" />
<conditions logicalGrouping="MatchAny">
<add input="{REQUEST_FILENAME}"
matchType="IsFile" pattern=""
ignoreCase="false" />
<add input="{REQUEST_FILENAME}"
matchType="IsDirectory"
pattern=""
ignoreCase="false" />
</conditions>
<action type="None" />
</rule>
<rule name="Imported Rule 2" stopProcessing="true">
<match url="^.*$" />
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
此规则将使服务器检查文件是否存在,如果不存在,则将请求转发到 index.php
于 2012-05-09T16:15:35.910 回答