以下是我在 /etc/apache2/sites-available 中的虚拟主机:
<VirtualHost *:80>
DocumentRoot "/var/www/roomstays/public"
ServerName roomstays
#This should be omitted in the production environment
SetEnv APPLICATION_ENV development
<Directory "/var/www/roomstays/public">
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
它还在 /etc/apache2/sites-enabled 文件夹上启用
以下是我的主机文件:
127.0.0.1 localhost
127.0.0.1 roomstays
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
我在 var/www/roomstays 中配置了我的网站。但是当我进入房间时,它没有打开网站并显示此消息:
有用!
这是此服务器的默认网页。
Web 服务器软件正在运行,但尚未添加任何内容。
虚拟主机有什么问题。