我已经在 ubuntu 18.04 中设置了一个虚拟主机:我在 sites avalaible 中创建了 cicles.almata.com,并在 sites-enabled 中创建了 ln。
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName cicles.almata.com
ServerAlias www.cicles.almata.com
DocumentRoot /var/www/html/cicles
ErrorLog ${APACHE_LOG_DIR}/errorcicles.log
CustomLog ${APACHE_LOG_DIR}/accesscicles.log combined
</VirtualHost>
还设置 /etc/hosts:
127.0.0.1 cicles.almata.com
但是当我输入 cicles.almata.com 并进入互联网时,它会出现一个 Plesk 网页。
我以为它会显示 /var/www/html/cicles/index.html 的内容....apache 不应该查看本地虚拟主机,然后设置,如果没有匹配项,则转到“外部”互联网。??? 那么,如果我设置虚拟主机,我必须确保它在互联网上不存在其域?有没有办法在本地机器上修复此问题?
谢谢
Apache2.4,Ubuntu18.04