first commit
This commit is contained in:
17
application/controllers/My404.php
Normal file
17
application/controllers/My404.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
class My404 extends CI_Controller
|
||||
{
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
function index()
|
||||
{
|
||||
// $this->session->sess_destroy();
|
||||
$this->load->view('404');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user