<VirtualHost *:80>
DocumentRoot "C:/wamp64/www/mysite/"
ServerName gamath
<Directory "C:/wamp64/www/mysite/">
AllowOverride All
Order Deny,Allow
Allow from all
Require local
</Directory>
</VirtualHost>
这是我的主机文件
127.0.0.1 localhost
127.0.0.1 gamath
::1 localhost
::1 gamath
1条答案
按热度按时间qqrboqgw1#
假设您使用的是Apache2.4,您应该像这样修改httpd-vhosts.conf文件
因为这些是Apache 2.2语法
和
是Apache 2.4语法
如果你真的想让你的网站从宇宙中访问,那么
是Apache 2.4语法
一些升级文档https://httpd.apache.org/docs/current/upgrading.html
还要确保取消注解
httpd.conf
文件中的httpd-vhosts.conf另外,请记住在修改这些文件后重新启动Apache。