xampp 访问出现New XAMPP security concept

简介: 在浏览器输入 http://60.10.140.22/xampp出现以下错误信息: Access forbidden! New XAMPP security concept: Access to the requested directory is only available from the local network.

在浏览器输入 http://60.10.140.22/xampp出现以下错误信息:

Access forbidden!


New XAMPP security concept:

Access to the requested directory 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 webmaster.

Error 403192.168.1.55
2011/4/11 11:17:18
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.3.4 mod_perl/2.0.4 Perl/v5.10.1

 

解决方法:

打开httpd-xampp.conf(/xampp/apache/conf/extra/httpd-xampp.conf)

#
# 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,OK了,哈哈

root@××××××:/opt/lampp# ./lampp restart

如何联系我:【万里虎】www.bravetiger.cn 【QQ】3396726884 (咨询问题100元起,帮助解决问题500元起) 【博客】http://www.cnblogs.com/kenshinobiy/
目录
相关文章
|
2月前
|
存储 Linux 数据安全/隐私保护
【Linux】文件服务WebDAV(Web-based Distributed Authoring and Versioning)
【Linux】文件服务WebDAV(Web-based Distributed Authoring and Versioning)
178 0
|
Android开发
Eclipse workplace local storage
Eclipse workplace local storage
Eclipse workplace local storage
|
安全 数据安全/隐私保护 Apache
|
弹性计算 安全 网络安全
Services to Secure Your Applications
Alibaba offers an industry-leading suite of security solutions through its Alibaba Cloud platform.
1414 0
|
关系型数据库 MySQL 数据安全/隐私保护