请教这个问题。。高手帮个忙呀
apache 规则如下:Options All -Indexes
DirectoryIndex index.html index.php
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /cqxr
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(visit|im|min|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>