从wampserver环境中的codeigniter url中删除index.php

i34xakig  于 2022-12-07  发布在  PHP
关注(0)|答案(1)|浏览(130)

我想从codeigniter url中删除index.php,我已经在apache服务器中激活了rewrite_module(我使用wampserver),并从配置变量$config['index_page'] = '';中删除了index.php,并将此代码添加到.htaccess文件中

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

但是,它仍然不起作用

w8biq8rn

w8biq8rn1#

在config/config.php文件中替换此行

$config['index_page'] = '';

相关问题