步骤:-1打开文件夹“application/config”并打开文件“config.php”。在 config.php 文件中查找并替换以下代码。
//find the below code
$config['index_page'] = "index.php"
//replace with the below code
$config['index_page'] = ""
步骤:-2转到您的 CodeIgniter 文件夹并创建 .htaccess
Path:
Your_website_folder/
application/
assets/
system/
.htaccess <——— this file
index.php
步骤:-3在 .htaccess 文件中写入以下代码
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
步骤:-4在某些情况下,uri_protocol 的默认设置无法正常工作。要解决这个问题,只需打开文件“application/config/config.php”,然后找到并替换以下代码
//Not needed for CodeIgniter 3 its already there.
//find the below code
$config['uri_protocol'] = "AUTO"
//replace with the below code
$config['uri_protocol'] = "REQUEST_URI"
仅此而已,但在 wamp 服务器中它不起作用,因为 rewrite_module 默认禁用,因此我们需要启用它。为此,请执行以下操作
- 左键单击 WAMP 图标
- 阿帕奇
- 阿帕奇模块
- 左键单击 rewrite_module
原始文件
示例链接