0

我正在尝试在运行 XAMPP 的系统中的虚拟主机上安装 magento

到目前为止,我已经完成了以下工作:

在 windows/system32/driver/host 下的 hosts 文件中添加了几行

192.168.1.69       magento2.hue
192.168.1.69       www.magento2.hue

然后在 XAMPP 文件夹的 httpd-vhosts.conf 中添加代码

NameVirtualHost 192.168.1.69:80
<VirtualHost magento2.hue>
    ServerAdmin magento2.hue
    DocumentRoot "C:/www/mag_domain2/httpdocs/"
    ServerName magento2.hue
    ServerAlias www.magento2.hue
    ErrorLog "C:/www/mag_domain2/httpdocs/error.log"
    CustomLog "C:/www/mag_domain2/httpdocs/access.log" combined
    <Directory "C:/www/mag_domain2/httpdocs">
        Options Indexes FollowSymLinks
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>

重新启动 Apache 和 Mysql,但没有加载站点,即 magento2.hue。

你能弄清楚我在这里做错了什么吗?

4

2 回答 2

0

尝试使用下面的 httpd.conf 设置它在我的最后工作

NameVirtualHost *:80

<VirtualHost *:80>
 DocumentRoot "D:/xampp/htdocs/yourmagentosetup" 
 ServerName magento2.hue
</VirtualHost> 

希望这对你有用。

于 2013-09-25T08:46:35.137 回答
0

天啊,

我只是想通了..我之前添加了另一个指向 192.168.1.59 并且工作正常的虚拟主机

我只需要将新的 IP 指向相同的 IP,并将 ServerName 更改为 magento2.hue 而不是之前的 magento.hue。

现在可以了。

感谢 liyakat 和 Arjun 查看此问题。

于 2013-09-25T09:06:06.777 回答