0

私はこのhtaccessを持っており、URLに追加されたフォルダーを取得し、それを変数に変換します。次のように:

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

私はそれをweb.configxmlsctructuredファイルに変換する必要がありました。これは次のように機能しました。

<?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 に答える