You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
240 B

  1. <?php
  2. namespace Admin\Controller;
  3. use Think\Controller;
  4. class EmptyController extends Controller {
  5. public function _empty($name){
  6. $this->display('Monitor/error404');
  7. }
  8. public function index(){
  9. $this->display('Monitor/error404');
  10. }
  11. }