.htaccess 重写规则异常

.htaccess rewrite rule exception

我有一个小问题。 我已经构建了一个系统,它使用 .htaccess 将流量定向到正确的位置。

现在我有以下 .htaccess 数据

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule    ^$    core/    [L]
RewriteRule    (.*) core/    [L]
///###  (does not work.. this is a problem) RewriteRule    (.*) app/template/ !page    [L]
 </IfModule>

问题实际上是,当我想显示位于 /app/templates 的 .css 文件时,它也会重定向到 /核心/

我试图破例。然而,这似乎并不真正适用于我的方法。

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule    ^$    core/    [L]
    RewriteRule    (.*) core/    [L]
    RewriteRule    (.*) app/template/ !page    [L]
 </IfModule>

这个 .htaccess 给出了 500 错误。 谁能告诉我我做错了什么?以及如何使模板目录的例外工作?

TIAD!!

你应该使用:

<IfModule mod_rewrite.c>
   RewriteEngine on

   RewriteRule ^$ core/ [L]

   # 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    
   RewriteRule (.*) core/ [L]

 </IfModule>