1234567891011121314151617181920 |
- <?php
- /**
- * 模块接口
- *
- * @author 泸州市音速科技有限公司
- * @url https://www.rryong.cn
- */
- error_reporting(0);
- // error_reporting(E_ERROR | E_WARNING | E_PARSE);
- // error_reporting(E_ALL);
- defined('IN_IA') or exit('Access Denied');
- class Wike_agingModuleSite extends WeModuleSite
- {
- public function __call($name, $arguments)
- {
- $host = isset($_SERVER['HTTP_X_FORWARDED_HOST']) ? $_SERVER['HTTP_X_FORWARDED_HOST'] : (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME']);
- header("Location:http://" . $host . '/addons/wike_aging/public/index.php');
- }
- }
|