我在wordpress网站上启用了永久链接,现在每个页面都返回404错误。该网站托管在IIS 8.5中
网络。配置文件中包含以下规则
<?xml version="1.0" encoding="UTF-8"?>
<directoryBrowse enabled="false"/>
<rewrite>
<rules>
<clear/>
<rule name="wordpress" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
</rules>
</rewrite>
我能做些什么来解决这个问题并使permalinks工作?