Project Done Before

This commit is contained in:
kicap1992
2021-06-23 16:03:34 +08:00
commit af5080743b
1073 changed files with 389091 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<?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('home/404');
}
}
?>