Index.php 460 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. *------Create thems Controller------
  4. *------SCWPHP Version 1.0.0------
  5. *------Dev Model Jions------
  6. *------Create Time 2017-06-22 10:24:14------
  7. */
  8. namespace App\Home\Controller;
  9. class Index extends BaseController {
  10. public function Index() {
  11. $this->display();
  12. }
  13. function redirect(){
  14. $uri=isset($_GET['uri']) && !empty($_GET['uri'])?trim($_GET['uri']):'';
  15. if(empty($uri)){
  16. header('location:/');
  17. }
  18. header('location:'.$uri);
  19. }
  20. }