php – 404找不到codeigniter网址

我是一个使用codeigniter的初学者.我使用以下URL“http://localhost/ci/index.php/shopcart”访问控制器,我收到错误404页面未找到

控制器代码

     <?PHP

    class Cart extends CI_Controller { // Our Cart class extends the Controller class

        function Cart()
        {
            parent::CI_Controller(); // We define the the Controller class is the parent. 

        }


    }

        function index()
        {
            $this->load->model('cart_model'); // Load our cart model for our entire class 
            $data['products'] = $this->cart_model->retrieve_products(); // Retrieve an array with all products
            $data['content'] = 'cart/products'; // Select our view file that will display our products
            $this->load->view('index', $data); // display the page with the above defined content
        }
?>

型号代码

<?PHP 

class Cart_model extends Model { // Our Cart_model class extends the Model class
// Function to retrieve an array with all product information
    function retrieve_products(){
        $query = $this->db->get('products'); // Select the table products
        return $query->result_array(); // Return the results in a array.
    }  

}

路线

$route['default_controller'] = "shopcart";

自动加载

$autoload['libraries'] = array('cart' , 'database');
$autoload['helper'] = array('form');

解决方法:

codeigniter适用于base_url~ / index.PHP / class_nm / function / segment3.现在在您的情况下更改文件名Cart.PHP.

localhost/ci/index.php/cart/index

并确保您的功能索引是公开的,我想它会解决您的问题:)

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...