步骤:-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图标
- 阿帕奇
- Apache模块
- 左键单击rewrite_module
原始文件
范例连结