原来可以访问,但是现在不能访问首页,里面的都可以访问,这是为什么呢
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
原来是
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|js|up|kindeditor|robots\.txt|PHPExcelClasses|info\.xls)
RewriteRule ^(.*)$ /index.php/$1 [L]
|