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

35 lines
321 B
PHP
Raw 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 homepage(){
header('Location: /homepage/');
}
/* POST-CALL
*
*/
public function __destruct(){
}
}