Apache版本-2.4.33
PHP版本 - 7.2.4
我在WAMP中设置了虚拟主机和站点。我可以毫无问题地在该机器上加载页面。
当我尝试从我的机器访问它时(我可以毫无问题地ping WAMP服务器)。我得到以下内容:
禁止
您无权访问此服务器上的/ sitename。
XXX.XX.XX.XXX端口80上的Apache / 2.4.33(Win32)PHP / 7.2.4服务器
据我所知,我的配置设置正确:
的httpd-vhosts.conf
<VirtualHost *:80>
ServerName sitename
DocumentRoot "d:/wamp/www/sitename"
<Directory "d:/wamp/www/sitename/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
的httpd.conf
Listen 80
...
<Directory />
AllowOverride none
Require all denied
</Directory>
有人可以帮助指出为什么我无法访问此内容吗?