ptut-vhost/build/router/controller/redirect.php

35 lines
313 B
PHP
Raw Permalink Normal View History

2018-02-17 17:18:58 +00:00
<?php
namespace router\controller;
class redirect{
/* PRE-CALL
*
* @url<String> Calling URI
*
*/
public function __construct($url){
}
/* CALL
*
*/
public function home(){
header('Location: /home/');
2018-02-17 17:18:58 +00:00
}
/* POST-CALL
*
*/
public function __destruct(){
}
}