|
本帖最后由 gguava 于 2012-9-17 19:27 编辑
rt
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond $1 !^(index\.php|robots\.txt|css|images|html|xls)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond $1 !^(index\.php|robots\.txt|css|assets|images|html|xls|js)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
解决了 xls本来放在application里面 后来就移到根目录新建文件夹xls里面
搞掂xls后发现css访问不了了,好奇怪,于是加了assets,我的css js img都是放在assets |
|