博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
xampp 访问出现New XAMPP security concept
阅读量:4921 次
发布时间:2019-06-11

本文共 1135 字,大约阅读时间需要 3 分钟。

搭建好xampp,输入网址http://192.168.110.205/xampp/,报错如下:

New XAMPP security concept:

Access to the requested object is only available from the local network.

This setting can be configured in the file "httpd-xampp.conf".


 

If you think this is a server error, please contact the .

Error 403

Apache/2.4.9 (Unix) OpenSSL/1.0.1g PHP/5.4.27 mod_perl/2.0.8-dev Perl/v5.16.3

 

 

 

 

解决方法:

打开httpd-xampp.conf(/xampp/apache/conf/extra/httpd-xampp.conf)(注:我的文件路径在/opt/lampp/etc/extra/httpd-xampp.conf,通过locate 文件名或者find可以查找到)

# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
    Order deny,allow
   #Deny from all
    Allow from 127.0.0.0/8
    ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var
</LocationMatch>

注:Deny from all注释掉,变成: #Deny from all

注:需要重启apache[/opt/lampp/lampp restartapache]

就可以远程登录xampp了,通过外网登陆本地xampp了。

--------------------------------------------------------------------------------

新版本可能是用下面的这个方法:

# Require local

ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
正解方法是注掉本地访问这行,如下: 
#Require local
最后,重启启动lampp,

转载于:https://www.cnblogs.com/yangtou45du/p/10538776.html

你可能感兴趣的文章
浏览器兼容性
查看>>
Java并发工具类(四):线程间交换数据的Exchanger
查看>>
求100内数的偶数和
查看>>
《从零开始搭建游戏服务器》MySQL安装配置
查看>>
Redis总结(三)Redis 的主从复制
查看>>
day_1:心理统计中常用的一些概念和统计符号
查看>>
彻底理解“递延所得税”
查看>>
1.GCC程序编译
查看>>
nyoj-248-buying feed
查看>>
函数的嵌套和作用链域
查看>>
合唱团
查看>>
MySQL 5.7.14 net start mysql 服务无法启动
查看>>
python重要资源
查看>>
SSRS 传多值参数问题
查看>>
linux快速进入全屏命令行模式
查看>>
colinux安装fedora
查看>>
Moya/RxSwift/ObjectMapper/Alamofire开发
查看>>
有关metric learning
查看>>
java udp 发送小数数字(较难)
查看>>
Caching Tutorial
查看>>