1、修改www/index.php 修改如下:
$projectContents .= '<li><a href="';
if($suppress_localhost)
$projectContents .= 'http://localhost/'.$file.$UrlPort.'/"'; (这里为新添加的)
else
$projectContents .= 'http://localhost'.$UrlPort.'/'.$file.'/"';
$projectContents .= '>'.$file.'</a></li>';
2、看一下apache_modules
点击小绿->选择Apache->选择Apache_modules->找到autoindex_module 这个要带上√
局域网访问:
1、防火墙一定要关掉,他太危险了
2、修改配置文件httpd-vhosts.conf
3、在Require local下面加上 require all granted
4、修改完配置文件之后必须要重启服务
然后就可以正常使用了。