mirror of
https://github.com/PGYER/codefever.git
synced 2026-05-06 21:50:39 +08:00
18 lines
289 B
PHP
18 lines
289 B
PHP
<?php
|
|
|
|
require_once APPPATH . '/controllers/base.php';
|
|
|
|
class Nopage extends Base
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
header("HTTP/1.1 404 Not Found");
|
|
$this->load->view('nopage/index');
|
|
}
|
|
}
|