如何将htaccess RewriteCond http_cookie重写为web.config替代?

时间:2013-04-16 13:52:15

标签: azure

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

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

1 个答案:

答案 0 :(得分:0)

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

<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以查看其外观。