0

我的.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]

它从 URL 中删除index.php并强制从example.netto重定向www.example.net,但是当我输入时http://example.net,它不会重定向到www.example.net. 如何解决这个问题?

4

3 回答 3

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'] = '';
于 2013-03-01T11:16:07.600 回答
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

于 2013-03-01T10:52:27.757 回答
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';
于 2013-03-01T12:07:52.813 回答