删除index.php后找不到页面

时间:2016-09-26 06:23:18

标签: php jquery google-chrome jquery-plugins codeigniter-3

我想从我的网站中删除index.php。我尝试了这些步骤,但仍无法正常工作:

  • $config[index_page] = '';
  • 在系统文件夹中添加.htaccess: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase/seotutor/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] </IfModule>
  • 在wamp apache中启用了mod_rewrite
  • 覆盖httd.conf中的所有内容

1 个答案:

答案 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" 

这会对你有帮助。