我为我的虚拟主机配置了这个配置,并在真实域中运行。出于测试目的,我需要创建具有非真实域(即 domain10)的相同虚拟主机。考虑到浏览器检查虚拟主机的域名,我认为使用类似 127.0.0.1 的名称。但我不知道要意识到这一点。
<VirtualHost *:80>
ServerAdmin info@domain10.org
ServerName domain10.org
ServerAlias domain10.org
DirectoryIndex index.html index.htm index.php
DocumentRoot /home/domain10.org/
<Directory /home/domain10.org/>
Options -Includes -Indexes -FollowSymLinks -ExecCGI +MultiViews
AllowOverride none
Order allow,deny
Allow from all
</Directory>
</VirtualHost>