我们只是在子文件夹中找到了wordpress网站,例如http://localhost/2018/site/v3/ 其中固定链接设置的邮编不起作用。我们仅在“ v3”文件夹中添加web.config文件以启用IIS重写权限
获取-500-内部服务器错误。 如果将web.config删除,则会显示-404错误
我们获得了带有IIS 2008 R2的本地服务器。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="wordpress" patternSyntax="Wildcard">
<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>