0

我有这个 htaccess,它可以获取在 url 中添加的文件夹并将其转换为变量。如下:

RewriteEngine on
RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?pagina=$1

我必须将其转换为 web.config xml 结构文件,它的工作方式如下:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="Imported Rule 1">
                    <match url="^([a-zA-Z0-9_-]+)$" ignoreCase="false" />
                    <action type="Rewrite" url="/index.php?page={R:1}" appendQueryString="false" />
                </rule>
                <rule name="Imported Rule 2">
                    <match url="^([a-zA-Z0-9_-]+)/$" ignoreCase="false" />
                    <action type="Rewrite" url="/index.php?page={R:1}" appendQueryString="false" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

现在我需要使它仅在最后一个文件夹不是特定文件夹时才起作用,我在研究后尝试了这个但没有成功:

<conditions logicalGrouping="MatchAll">
    <add input="{REQUEST_URI}" pattern="!^/diretorio/" ignoreCase="true" />
</conditions>
4

1 回答 1

0

我发现正确的代码是:

<conditions>
     <add input="{REQUEST_URI}" pattern="^/admin/" ignoreCase="false" negate="true" />
</conditions>
于 2012-11-12T14:27:08.787 回答