Apache服务器则开启 mod_rewrite 模块
在 Aoache 配置文件 httpd.conf 中查找 LoadModule rewrite_module modules/mod_rewrite.so 去掉前面 ‘#‘ 则为开启
在跟目录创建 .htaccess 文件 内容如下
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
然后将 application/config/config.php 配置文件中的 $config[‘index_page‘] = ‘‘; 设置为空 默认 index.php
注意 : 配置主机时的 AllowOverride 值
AllowOverride 的值如果是 None 去掉 index.php 有可能会提示 500错误 需把值改为 All