0
私はiisのweb.configに変換htaccessのインポートを使用しますが、 '条件パターンはサポートされていません。 -lをするRewriteCondされる%{REQUEST_FILENAME}!htaccessファイルで-l、条件パターンはサポートされていません:-l convert .htaccess to web.config
htaccessの
Options -MultiViews
RewriteEngine On
Options -Indexes
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
出力-lを作る方法を
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^(.+)$" ignoreCase="false" />
<conditions>
<!--# Necessary to prevent problems when using a controller named "index" and having a root index.php-->
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<!--The condition pattern is not supported: -l.-->
</conditions>
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
がある場合ので、web.configファイルでサポートされています-liが私のウェブサイトを開き、エラー "404 - ファイルまたはディレクトリが見つかりません"を使用しないでください。