Win Server 2016下wamp外网或局域网报403

前几天迁移了一套客户系统,服务器是 windows server 2016,安装了一个 wamp 做服务,部署后本地可访问但是局域网或者外网内无法访问,看了一堆put-online 或者修改 http.conf 的,操作后依旧报错,随后研究了一下,解决方案如下:

修改 wamp 安装目录下

bin/apache/apache2.4.23/conf/extra/httpd-vhosts.conf

# Virtual Hosts
#


    ServerName localhost
    ServerAlias localhost
    DocumentRoot D:/WWW
    
        Options +Indexes +Includes +FollowSymLinks +MultiViews
        AllowOverride All
        Require local
        # 在这加下面这个 !!!!
        Require all granted 
    

#

 

你可能感兴趣的:(运维技术)