ファイルまたはディレクトリが存在する場合、書き換えルールをスキップするようにhtacessファイルを調整しようとしていますが、ファイルが存在する場合、URLが別のものに変更されます。なぜこれが起こっているのか分かりません。これが私のhtaccessファイルです:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f [OR]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^project/([^/\.]+)/?$ index.php?view=project&project=$1 [L]
RewriteRule ^for/content/ag index.php?view=opening§ion=ag [L]
RewriteRule ^for/content/bus index.php?view=opening§ion=bus [L]
RewriteRule ^for/content/fcs index.php?view=opening§ion=fcs [L]
RewriteRule ^for/content/market index.php?view=opening§ion=market [L]
RewriteRule ^for/content/trade index.php?view=opening§ion=trade [L]
RewriteRule ^for/content/teched index.php?view=opening§ion=teched [L]
RewriteRule ^for/content/([^/\.]+)/?$ index.php?view=content_area§ion=$1 [L]
ディレクトリ/ project/ntiが存在し、index.phpファイルがあります。アドレスmywebsite.com/folder/project/ntiを入力すると、mywebsite.com/folder/project/nti /?view = project&project = ntiに変わります。サンプルサイトがサブフォルダーにあるテストサーバーにこれを適用していますが、実装すると、ルートWebサーバーフォルダーになります。
助けてくれてありがとう!
余分な[OR]
を削除し、次のようなコードにします。
# If the request is not for a valid directory
RewriteCond %{REQUEST_FILENAME} !-d
# If the request is not for a valid file
RewriteCond %{REQUEST_FILENAME} !-f
# If the request is not for a valid link
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^project/([^/.]+)/?$ index.php?view=project&project=$1 [L,NC,QSA]