homepagePHP/app/Admin/Controller/IndexController.class.php

12 lines
184 B
PHP
Executable File

<?php
namespace Admin\Controller;
class IndexController extends \Gy_Library\GyController{
public function index(){
$this->redirect(C('USER_AUTH_GATEWAY'));
}
}