我在 IIS 虚拟目录中托管了一个 WordPress 博客,其所有 URL 都以正斜杠结尾。例如:
我在 web.config 中定义了以下规则:
<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>
<rule name="Redirect-domain-to-www" patternSyntax="Wildcard" stopProcessing="true">
<match url="*" />
<conditions>
<add input="{HTTP_HOST}" pattern="example.com" />
</conditions>
<action type="Redirect" url="http://www.example.com/blog/{R:0}" />
</rule>
此外,我尝试添加以下规则来删除尾随斜杠:
<rule name="Remove trailing slash" stopProcessing="true">
<match url="(.*)/$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Redirect" redirectType="Permanent" url="{R:1}" />
</rule>
看来最后一条规则根本不起作用。这里有谁尝试过从 IIS 上托管的 WordPress 博客中删除尾部斜杠吗?
答案1
WordPress 会接受带或不带尾部斜杠的 URL。因此入站端没有问题。
它仅仅生成带有尾随斜杠的 URL,因此您应该使用出站重写规则来删除斜杠(如果存在)。
由于出站规则不能与输出压缩一起使用,因此您必须禁用它。与 WordPress 的标准重写规则一起使用,您最终会得到以下 web.config:
<?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>
<outboundRules>
<rule name="Remove trailing slash" preCondition="IsHTML">
<match filterByTags="A, Form, IFrame" pattern="(.*)/$" />
<action type="Rewrite" value="{R:1}" />
</rule>
<preConditions>
<preCondition name="IsHTML">
<add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
</preCondition>
</preConditions>
</outboundRules>
</rewrite>
<urlCompression doStaticCompression="false" doDynamicCompression="false" />
</system.webServer>
</configuration>
希望这可以帮助。