我在 Windows 上以管理员身份安装了 XAMPP C:\xampp
,一切运行正常,但当我通过输入http://n.n.n.n/
URL 将 Web 浏览器指向计算机的 IP 时,浏览器会重定向到http://n.n.n.n/xampp/
可以访问 XAMPP 管理面板的位置。但是,我希望用户浏览http://n.n.n.n/
以从 中查看我的index.html
/index.php
文件C:\xampp\JohnDoesDirectory'
。
我怎样才能做到这一点?
答案1
转至C:\xampp\apache\conf\httpd.conf
并更改以下行:
DocumentRoot "C:/xampp/htdocs"
<Directory "C:/xampp/htdocs">
到
#DocumentRoot "C:/xampp/htdocs"
#<Directory "C:/xampp/htdocs">
DocumentRoot "C:/xampp/htdocs/JohnDoesDirectory"
<Directory "C:/xampp/htdocs/JohnDoesDirectory">
然后从 XAMPP 控制面板重新启动 Apache(单击停止然后单击启动)。
问题就解决了。