在我的wordpress站点中,当我将Permalink结构设置为帖子名称时,它会将所有帖子重定向到404。使用默认permalink,它可以正常工作。
Server Details :
Windows服务器-IIS
Web.Config Code :
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="WordPress Rule" stopProcessing="true">
<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>
</rules>
</rewrite>
</system.webServer>
</configuration>
我刚从这里得到帮助:
https://codex.wordpress.org/Using_Permalinks但那个代码对我不起作用。我是否需要修改任何其他文件来解决404错误?