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

35 lines
313 B
PHP

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