0

我一直在努力让 .htaccess 文件在 codeigniter 上工作,当你加载除索引之外的任何其他页面时,我遇到了这个问题,每次你点击我导航栏中的链接时,它都会在 index.php/ 上添加,所以在首先点击一个链接,你最终会得到类似http://www.website.com/index.php/index.php/page

当我从网站http://website.com/new/index.php/website.com/new/img/gallery/fw1.jpg打开图像时

我的链接与 index.php/About">Aboutour 团队相同

我的配置文件 $config['base_url'] = 'website.com/new/';

我怎么解决这个问题?

4

1 回答 1

0

我使用以下 .htaccess 文件,该文件一直适用于 CodeIgniter:

<IfModule mod_rewrite.c>
     RewriteEngine on

     RewriteCond %{REQUEST_FILENAME} !-f
     RewriteCond %{REQUEST_FILENAME} !-d

     RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

您还应该检查您的 application/config/config.php 文件以确保它具有以下行(空白的 base_url 设置意味着 CodeIgniter 将自动生成它):

$config['base_url'] = '';
$config['index_page'] = '';

您可能还想检查自己是否正确生成了链接。您可以对每个链接使用 site_url() 以确保最大的可移植性。例如

<a href='<?=site_url('about')?>>About</a>
于 2013-03-29T18:27:40.927 回答