首页 > 数据库技术 > 详细

You don't have permission to access / on this server. wampserver3.1.0配置外网访问的问题

时间:2017-10-02 22:02:47      阅读:3291      评论:1      收藏:1      [点我收藏+]

参考各种wamp教程后外网仍然不能访问服务器,很是头疼

网上好多wampserver配置都比较久远,最新版本3.1.0的很少,首先打开httpd.conf文件(这部分较简略,详细可以参考其他wamp配置教程)

更改DocumentRoot 。。。和<Directory " 。。。">后,由于wampserver3.0.6的apache版本为2.4.23,所以允许外网访问要在Directory 中的加上:Require all granted,

之后发现还是访问不了:

技术分享

原来在apache 2.4.27中有这段代码:

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

这样导致httpd.conf中的Require all granted不起作用,所以在apache根目录\conf \ extra中找到httpd-vhosts.conf文件,在Directory 中添加:Require all granted,这样就可以外网访问了!

<VirtualHost *:80>
  ServerName www.saneb.cn
  DocumentRoot "c:/sitefolder"
  <Directory "c:/sitefolder/">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
    Require all granted
  </Directory>
</VirtualHost>

You don't have permission to access / on this server. wampserver3.1.0配置外网访问的问题

原文:http://www.cnblogs.com/xyfll7/p/7622744.html

(6)
(6)
   
举报
评论 一句话评论(1
2017-10-13 11:03:18
谢谢!!
         谢谢!!
                   谢谢!!
回复
 (7)
 (5)
1条  
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!