我有一个网站使用Worpress的一部分。我在索引页面遇到问题。
With index.php网站会加载最新的帖子,这是使用错误网址的所需操作。 Without index.php,这是所需的网址,页面加载404模板。
我的网站正常运行。我唯一能想到的是web.config错误地路由了这个请求。由于这是一个我处理不好的领域,我希望得到一些帮助,看看是否是这个问题。
这是web.config内容:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 2-1" stopProcessing="true">
<match url="." ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
答案 0 :(得分:1)
听起来你在默认文档列表中没有index.php。将index.php添加到列表中,如下所示。您也可以通过默认文档的IIS设置执行此操作。
<defaultDocument>
<files>
<clear />
<add value="index.php" />
<add value="index.asp" />
<add value="Default.asp" />
<add value="Default.htm" />
<add value="index.htm" />
<add value="index.html" />
<add value="iisstart.htm" />
<add value="default.aspx" />
</files>
</defaultDocument>