通过一个index.php挂载多个网站
这是最新HiAPP支持的。。先为一个网站绑定多个域名。。
index.php
<?php
$host=strtolower($_SERVER['SERVER_NAME']);
$host=='hiftp.net' && exit(include('./hiftp_index.php'));
$host=='app.hiftp.net' && exit(include('./app_index.php'));
$host=='en.hiftp.net' && exit(include('./en_hiftp_index.php'));
?>
不过得几个程序之间文件名不重复,嗯嗯,所以HiApp完美支持自定义文件名前缀。。
HTTP_HOST = SERVER_NAME:SERVER_PORT