问题是IIS重写。如果在IIS上使用自定义永久链接,实际上需要做两件事才能实现这一点。
在里面Settings-Permalinks
选择Custom Structure
并输入/%postname%/
. 在您的web中。配置,将其用作重写部分:
<rewrite>
<rules>
<rule name="wordpress">
<match url="^/(.*)$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
<rule name="wordpress2">
<match url="(?!index\\.php|wp-|xmlrpc)(.*)" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:0}" />
</rule>
</rules>
</rewrite>