我正在尝试从CI网址中删除'index.php'。
我尝试过很多解决方案,但都没有。我已经在'config.php'中设置了这些变量:
$config['index_page'] = "";
$config['uri_protocol'] = "REQUEST_URI";
我现在的.htaccess是:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^plugb.com$ [NC]
RewriteRule ^(.*)$ http://www.plugb.com/$1 [R=301,L]
RewriteCond $1 !^(index\.php|files|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
www前缀部分工作正常。但'index.php'部分没有。如果您想查看网页,请点击此处:http://www.plugb.com/index.php/home
答案 0 :(得分:3)
将您的应用程序文件夹从系统文件夹中取出并使用以下代码:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /folder_name/index.php/$1 [L]
它应该有用。
答案 1 :(得分:2)
有关如何在“删除index.php文件”部分下的URLs Section of the CodeIgniter User Guide中执行此操作的说明。