1

我很难将以下 RewriteCond 重写为 web.config 替代方案,希望能提供任何帮助。

RewriteCond %{HTTP_COOKIE} !^.*wordpress_logged_in_.*$
4

1 回答 1

0

使用IIS 7 中的URL 重写模块,带条件的重写规则如下所示:

<rules>
    <rule name="something">
        <match ... />
        <conditions>
            <add input="{HTTP_COOKIE}" pattern="^.*wordpress_logged_in_.*$" />
        </conditions>
        <action ... />
    </rule>
</rules>

您还可以在本地 IIS 7 安装中使用 URL Rewrite GUI 界面来帮助构建您的重写规则,然后打开相应的 web.config 以查看它的外观。

于 2013-04-16T14:34:15.897 回答