2013-01-17 24 views

回答

1

试试这个:

AddDefaultCharset UTF-8 
RewriteEngine on 

RewriteCond %{REQUEST_URI} !^(index\.php|images|test|css|js|files|wiki|sitemap\.xml|robots\.txt|favicon\.ico) 
RewriteRule ^(.*)$ index.php/$1 [L] 

Options All -Indexes 
  • 最后一行应修复列表,使用请求URI的条件应该可以解决重写。