我在Windows上配置了自己的本地服务器,该服务器包含Apache,PHP和MySQL的二进制版本。 Apache与localhost配合良好。但是现在我想配置虚拟主机,因此我在<Directory "D:/Server/localhost">
中将<Directory "/">
开头标签更改为httpd.conf
,并在结束标签</Directory>
之后将以下内容添加到文件中< / p>
NameVirtualHost *
<VirtualHost *>
ServerName localhost
DocumentRoot "D:/Server/localhost"
</VirtualHost>
<VirtualHost *>
ServerName localhost_static
DocumentRoot "D:/Server/localhost_static"
</VirtualHost>
并重新启动服务器
localhost
仍然有效,但localhost_static
无效
如何解决问题?
p.s。当然,D:/Server/localhost_static
文件夹存在并且具有静态的index.html