访问XAMPP / laravel主页

时间:2018-03-20 10:38:18

标签: windows laravel apache ubuntu xampp

所以,我在这里有一个小问题,我安装了在Ubuntu桌面虚拟机上使用Apache的XAMPP(在vbox上),我还在其上创建了一个Laravel项目,当我从同一个VM本身访问它时它工作正常! Accessing the home page from firefox ubuntu

然而,当我尝试从我的主机Windows机器访问它时,它只是访问XAMPP主页,如下所示:

access from chrome windows

现在我的ubuntu VM的地址设置为192.168.1.50,我的windows为192.168.1.8! 我还加入了Windows机器"等等#34;提交条目:

192.168.1.50 usthbcloud.com

和我的ubuntu机器:

127.0.0.1 usthbcloud.com

我的XAMPP的httpd.conf文件包含文件:httpd-vhosts.conf

我将httpd-vhosts.conf修改为以下内容:

vhosts.conf

任何解决方案?..

1 个答案:

答案 0 :(得分:0)

您正面临Windows中的问题。试试这个

<VirtualHost *:80>
    DocumentRoot "D:/XAMPP/htdocs/"
    ServerName localhost
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot "D:/XAMPP/htdocs/eduguru/public/"
    ServerName eduguruacademy.com
</VirtualHost>
  

httpd-vhosts.conf中尝试此操作。替换为 DocumentRoot &amp; ServerName 相应地。然后重启XAMPP