定义了.htaccess后,css文件都找不到了
去掉,使用index.php/home的方式正常显示,怎么解决啊 要排除资源文件夹 <IfModule mod_rewrite.c>RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|robots\.txt|css|images)
RewriteRule ^(.*)$ index.php/$1
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule> 谢谢 ward:kiss:
页:
[1]