适用于虚拟主机无法设置public目录为网站目录的虚拟主机
(1).根目录创建index.php
<?php //设置网站目录 $root_path = __DIR__ . DIRECTORY_SEPARATOR . 'public' . DIRECTORY_SEPARATOR; //设置首页文件 $root_file = $root_path . 'index.php'; //加载真实首页文件 chdir($root_path); require $root_file;
然后访问这个index.php即可