我的.htaccess
文件是:
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt|img/|css/|js)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L,QSA]
它会从网址中删除index.php
并强制从example.net
重定向到www.example.net
,但是当我输入http://example.net
时,它不会重定向到www.example.net
。怎么解决这个问题?
答案 0 :(得分:1)
在.htaccess文件中更改此
RewriteRule ^(.*)$ /index.php/$1 [L,QSA]
要
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
并在配置文件中进行了2次更改:
$config['base_url'] = 'http://'.$_SERVER['SERVER_NAME'].'/CiFolderName';
$config['index_page'] = '';
答案 1 :(得分:0)
设置你的htaccess
Options +FollowSymLinks +ExecCGI
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</IfModule>
删除配置中的index.php
$config['index_page'] = '';
还允许覆盖apache中的htaccess
nano /etc/apache2/sites-available/default
并更改
AllowOverride All
并重新启动apache
答案 2 :(得分:0)
将.htaccess文件与index.php文件一起放在应用程序根目录中。 (检查htaccess扩展名是否正确,Bz htaccess.txt对我不起作用。)
并将以下规则添加到.htaccess文件中,
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
然后在application / config / config.php文件中找到以下行
$config['index_page'] = 'index.php';
将变量设置为空,如下所示。
$config['index_page'] = '';
就是这样,它对我有用。
如果它不起作用,请尝试逐个替换以下变量('AUTO','PATH_INFO','QUERY_STRING','REQUEST_URI'和'ORIG_PATH_INFO')
$config['uri_protocol'] = 'AUTO';