码迷,mamicode.com
首页 > 其他好文 > 详细

XAMPP非本地访问被拒绝解决办法

时间:2015-01-23 06:04:07      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

问题场景:

  本机搭建一个apache服务器,正常访问XAMPP目录下的页面。

 

  手机接入同一wifi,以电脑ip方式访问该目录下的页面;提示:Access Denied

 

  Access to the requested directory is only available from the local network.
This setting can be configured in the file “httpd-xampp.conf”.   

 

解决办法:

  1、按照提示找到httpd-xampp.conf文件,路径在“/xampp/apache/conf/extra/httpd-xampp.conf”

 

  2、文本编辑器打开文件,找到配置项:New XAMPP security concept

 

  3、注释原来的配置修改为允许访问。

  

#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
#Require local
AllowOverride AuthConfig
Require all granted
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>

XAMPP非本地访问被拒绝解决办法

标签:

原文地址:http://www.cnblogs.com/MrCandy/p/4243036.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!