CodeIgniter 如何隐藏URL 中的 index.php

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

你可能感兴趣的:(CodeIgniter 如何隐藏URL 中的 index.php)