我有以下 .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 重定向?