Tạo routes trong codeigniter 3

Lượt xem: 4872

Tạo routes trong codeigniter 3

Chúng ta cần thêm một số routes vào trong file routes.php. Vì vậy, trước tiên chúng ta cần tạo routes cho ứng dụng CRUD Codeiginter 3 như hiển thị danh sách, tạo mới, cập nhật, xóa như sau:

application/config/routes.php

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$route['default_controller'] = 'welcome';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;

$route['item'] = "item/index";
$route['item/(:num)'] = "item/show/$1";
$route['itemCreate']['post'] = "item/store";
$route['itemEdit/(:any)'] = "item/edit/$1";
$route['itemUpdate/(:any)']['put'] = "item/update/$1";
$route['itemDelete/(:any)']['delete'] = "item/delete/$1";

Video: