解决Use 'LimitInternalRecursion' to increase the limit if necessary的问题 CodeIgniter .htaccess

来源:互联网 发布:电视tv软件 编辑:程序博客网 时间:2024/06/04 00:11

配置.htaccess如下:

RewriteEngine onRewriteBase /RewriteCond $1 !^(index\.php|images|robots\.txt|css|js); RewriteRule ^(.*)$ /sis/index.php/$1 [L]

修改后的.htaccess

RewriteEngine onRewriteBase /RewriteCond %{ENV:REDIRECT_STATUS} 200RewriteRule .* - [L]RewriteCond $1 !^(index\.php|images|robots\.txt|css|js); RewriteRule ^(.*)$ /sis/index.php/$1 [L]

问题解决:浏览器地址栏中输入http://localhost/sis/news(不用输入index.php),页面打开正常。


阅读全文
0 0
原创粉丝点击