我试图在Lampp服务下为Ubuntu系统中的Magento2(2.2.5)项目设置虚拟主机。
我在 opt / lampp / etc / extra / httpd-vhosts.conf
下添加了这段代码 <VirtualHost *.:80>
ServerName magento2.local
DocumentRoot "/opt/lampp/htdocs/Magento2/"
DirectoryIndex index.php
<Directory "/opt/lampp/htdocs/Magento2/">
Options All
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
并在 / etc / hosts
下添加127.0.0.1 magento2.local
在 nano /opt/lampp/etc/httpd.conf
下的一行下面未注释Include etc/extra/httpd-vhosts.conf
重新启动服务
/opt/lampp/lampp restart
此后,当我尝试点击 magento2.local 时,它将再次使用常规URL localhost / Magento2
进行重定向没有任何效果。
欢迎提出建议。
谢谢。