wampserver_x86_3.0.6 允许外网访问配置教程

[亡魂溺海] 提交于 2020-03-05 07:22:09

1.打开wamp目录下的apache配置文件中的httpd.conf

 

用可以看行数的编辑器打开

大概244行:

改为

<Directory />
AllowOverride none
Require all granted
</Directory>

大概288行:

改为

# onlineoffline tag - don't remove
Require all granted

大概387行:

改为

<Directory "${INSTALL_DIR}/cgi-bin">
# AllowOverride None
Options None
Require all granted
</Directory>

2.打开httpd-vhosts.conf 将Directory里面内容更换为以下内容

<Directory "c:/wamp/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
Require all granted
</Directory>

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!