【原创】 TP重定向404
TP重定向404<?php
namespace Home\Controller;
use Think\Controller;
class EmptyController extends Controller {
function _empty(){
header( " HTTP/1.0 404 Not Found" );
$this->display( 'Public:404' );
}
function index(){
h 继续阅读→