我想从我的网站中删除index.php
。我尝试了这些步骤,但仍无法正常工作:
$config[index_page] = '';
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/seotutor/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
答案 0 :(得分:2)
试试这个:
步骤:-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”,然后找到并替换下面的代码
//find the below code
$config['uri_protocol'] = "AUTO"
//replace with the below code
$config['uri_protocol'] = "REQUEST_URI"
这会对你有帮助。