这正是我现在设置的:
光盘 /var/www mkdir -p 测试 cd /var/www/test 须藤纳米索引.html cd /etc/apache2/sites-available 须藤纳米测试.conf
<VirtualHost *:80>
ServerName localhost223.com
DocumentRoot /var/www/test
</VirtualHost>
$sudo a2ensite test.conf $sudo 服务 apache2 重新加载
我可以像这样访问我的页面:file:///var/www/test/index.html
在网络浏览器中。
<html>
<h1>
here
</h1>
</html>
但我无法访问:http://localhost223.com
我得到错误:Could not resolve host
如何解决这个问题?
正如@George 所说,虽然没有指向您服务器 IP 的 FQDN,但您需要通过文件中的下一行将域名与环回接口-绑定:
127.0.0.1
/etc/hosts
然后
/etc/apache2/sites-available/test.conf
以这种方式编辑:不要忘记
sudo a2ensite test.conf
,然后重新启动 Web 服务器:Ubuntu 14.04:
sudo service apache2 restart
Ubuntu 16.04:
sudo systemctl restart apache2.service
尝试通过浏览器访问您的页面。