我的.htaccess是:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
配置文件:
$config['base_url']= '';
$config['index_page']= '';
$config['uri_protocol']= 'AUTO';
我使用了所有uri_protocol类型。没有任何东西。 如果是Auto,PATH_INFO,QUERY_STRING和REQUEST_URI,它会将每个请求重定向到默认控制器。 ORIG_PATH_INFO在单参数下运行良好(例如,mysite.com/para1);但是当多个参数传递时不能正常工作(例如:mysite.com/para1/para2)。
答案 0 :(得分:0)
您可以通过删除
对其进行修复RewriteBase /