我有一个由goddady托管的寡妇计算机,我需要创建一个规则来转发任何请求,其中一个URL指向要发送到index.php的不存在的文件。 通常我会使用.htaccess,但它在Windows主机中不同。
答案 0 :(得分:0)
我找到了答案。 我必须在根目录中放置一个名为“web.conf”的xml文件,它的工作方式与.htaccess相同。 我接受了ZendFramework Site
的规则<?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