<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
答案 0 :(得分:0)
假设您使用的是Apache 2.4,则应修改httpd-vhosts.conf文件,如此
<VirtualHost *:80>
DocumentRoot "C:/wamp64/www/mysite/"
ServerName gamath
<Directory "C:/wamp64/www/mysite/">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
因为这些是Apache 2.2语法
Order Deny,Allow
Allow from all
和
Require local
是Apache 2.4语法
如果您确实希望允许从Universe访问您的网站,那么
Require all granted
Apache 2.4语法
还要确保在httpd.conf
文件中取消了httpd-vhosts.conf的包含
还记得在修改这些文件后重启Apache。