1

.htacces在我的域根目录中使用以下文件。

RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt|admin|cache)
RewriteRule ^(.*)$ index.php [L]

一个问题是,当我尝试打开位于cache/themes/theme1/global.css

但由于某些原因,它不会将该文件夹排除cacheRewriteRule

有谁知道这个的解决方案?

4

1 回答 1

0

我没有对此进行测试,但应该可以;

RewriteEngine on
RewriteRule ^(cache.*)$ $1 [L]
RewriteCond $1 !^(index\.php|images|robots\.txt|admin|cache)
RewriteRule ^(.*)$ index.php [L]
于 2013-04-11T10:38:56.660 回答