codeigniter:锚链接在localhost中不起作用但索引页面执行正常

时间:2015-01-13 06:00:17

标签: php html codeigniter

我从网络服务器下载了一个旧网页。现在我重新设计所有页面。测试链接时返回localhost内容页面。但它在Web服务器上运行良好。

localhost索引页面中的

工作正常,但索引页链接不起作用。 点击链接时,网址显示为

http://localhost/sitename/site/index

主页中的锚码是:

<?php echo  anchor(base_url().'site/index','Home','class="header"');?>

在config.php中

$config['base_url'] = 'http://localhost/sitename/';
$config['index_page'] = '';
控制器(site.php)中的

class Site extends CI_Controller    
{
public function __construct()
{
    parent::__construct();
    $this->load->helper('url');
    $this->load->helper('form');    
    $this->load->helper('html');        
}

public function index()
{       
    $this->load->view('site/home');     
}
}
www / site-folder-name

上的

.htaccess页面

     <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
    ErrorDocument 404 /index.php
</IfModule>

如果你想要任何其他细节,我会给你....

1 个答案:

答案 0 :(得分:0)

修改你的Htaccess

RewriteEngine on
RewriteBase /project_name
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]