阿里云服务器公网ip访问Apache服务器出现403 Forbidden

本来买了个阿里云服务器快速部署一个应用来玩玩,结果堵在了公网ip无法访问这个点上。我使用的是wamp3.0.6的版本,把httpd.conf所有该改的地方,如require denied和require local改成require all granted后,出现的情况如下:

本机localhost能访问,本机阿里云内网ip可以访问,本机用阿里云公网ip无法访问,出现403 forbidden的错误,改了好多地方都不凑效。

无奈之下,装了个低版本的wamp2.5,同样只改上面的配置,公网ip却能访问。

经过两个配置文件的仔细核对,发现是Virtual host这个东西在捣鬼。将下面这一行注释掉即可。

# Virtual hosts
#Include conf/extra/httpd-vhosts.conf

这种方法不是很好,相当于禁用了virtual hosts,我们可以修改httpd-vhosts.conf这个配置文件,加入require all granted即可。

如下:

# Virtual Hosts
#


ServerName localhost
DocumentRoot c:/wamp64/www

Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
Require all granted


#

你可能感兴趣的:(Apache)