- 开启 apache 对 .htaccess 的支持 , 修改 /etc/apache2/apache2.conf
// 将 AllowOverride None 修改为 AllowOverride ALL
<Directory /var/www/>
Options FollowSymLinks
AllowOverride ALL
Require all granted
</Directory>
- 开启 apache_mod_rewrite 模块
sudo a2enmod rewrite
- 在 index.php 同级目录下建立 .htaccess 文件
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
- 修改 /var/www/html/application/config/config.php
// $config['index_page'] = 'index.php';
$config['index_page'] = ''; // hide the index.php
- 重启 apache 服务器
sudo service apache2 restart