用户
 找回密码
 入住 CI 中国社区
搜索
查看: 1341|回复: 1
收起左侧

[版本 3.x] nginx下只能显示index.php,后面的视图都弄不出来

[复制链接]
发表于 2016-8-8 22:37:33 | 显示全部楼层 |阅读模式
http://120.27.124.140/LHP/index.php有欢迎界面
http://120.27.124.140/LHP/index.php/freight_admin/不能访问,报404错
http://120.27.124.140/LHP/index.php?c=freight_admin&m=index也不能访问,只显示欢迎界面
freight_admin.php控制器头部代码
<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Freight_admin extends CI_Controller {

        public function index() {
                $this->load->view('index_new.html');
        }




感谢
发表于 2016-8-9 09:32:43 | 显示全部楼层
PHP复制代码
 $this->load->view('index_new.html');
复制代码

改为:
PHP复制代码
 $this->load->view('index_new');
复制代码

且index_new必须是php文件,含有.php后缀。

本版积分规则