我为本地开发安装了 XAMPP,我想为每个项目创建一个子域。在我的 apache vhosts 配置中,我放了这个:
<VirtualHost localhost:80>
DocumentRoot C:/xampp/htdocs/
ServerName localhost
ServerAdmin admin@localhost
</VirtualHost>
<VirtualHost nexus.localhost:80>
DocumentRoot C:/xampp/htdocs/nexus/
ServerName nexus.localhost
ServerAdmin admin@nexus.localhost
</VirtualHost>
在我的 Windows 主机文件中:
# development
127.0.0.1 localhost
127.0.0.1 nexus.localhost
localhost 正常工作。如在,如果我去http://localhost/project_name
一切正常。但是,如果我导航到http://nexus.localhost/
我只会得到Object not found!
错误。
这里有什么问题?谢谢你。