时间:2021-07-01 10:21:17 帮助过:4人阅读
LoadModule rewrite_module modules/mod_rewrite.so
把该行前的#去掉。
2.搜索 AllowOverride None(配置文件中有多处),看注释信息,将相关.htaccess的该行信息改为:
AllowOverride All
4. 修改application/config/config.phpOptions +FollowSymLinks IndexIgnore */* RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php
$config['index_page'] = 'index.php';
改成
$config['index_page'] = '';
以上就介绍了CodeIgniter(CI)去掉默认url中的indexphp,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。