我正在尝试在运行 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。
你能弄清楚我在这里做错了什么吗?