21 lines
467 B
PHP
21 lines
467 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* Redirection Engine
|
|
*
|
|
* @package lnApp
|
|
* @subpackage Page/Home
|
|
* @category Controllers
|
|
* @author Deon George
|
|
* @copyright (c) 2010 Deon George
|
|
* @license http://dev.leenooks.net/license.html
|
|
*/
|
|
class Controller_Redir extends Controller_TemplateDefault {
|
|
protected $auth_required = FALSE;
|
|
|
|
public function action_index() {
|
|
echo debug::vars($_SERVER['SERVER_NAME']);
|
|
}
|
|
}
|
|
?>
|