2

私は次の.htaccessを持っています

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l


RewriteRule ^([^>]+)/([^>]+)/([^>]+)/([0-9]+)$ index.php?region=$1&city=$2&course=$3&page=$4
RewriteRule ^([^>]+)/([^>]+)/([^>]+)$ index.php?region=$1&city=$2&course=$3
RewriteRule ^([0-9]+)$ index.php?page=$1

アクセスしたら

templates/firstTemplate/css/style.css

index.php にリダイレクトされるため、style.css が適用されません。この特定の URL の URL リダイレクトを無効にするにはどうすればよいですか?

4

1 に答える 1