xampp 访问出现New XAMPP security concept 解决办法

最近通过手机访问本地服务器时出现以下问题:

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.

解决方法:

打开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
最后,重启启动xampp,OK了

时间: 2024-12-06 02:53:25

xampp 访问出现New XAMPP security concept 解决办法的相关文章

xampp 访问出现New XAMPP security concept 或者 新しいXAMPPのセキュリティコンセプト

出现如下错误: 新しいXAMPPのセキュリティコンセプト: は.要求されたオブジェクトへのアクセスは.ローカルネットワークから入手可能です. この設定は.ファイル"で設定することができますのhttpd - xampp.conf " New XAMPP security concept:Access to the requested directory is only available from the local network.This setting can be configu

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. This setting can be configured in the file "httpd-xampp.conf". If you think this

转xampp 访问出现New XAMPP security concept

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”. 解决办法: 打开httpd-xampp.conf(/xampp/apache/conf/extra/httpd-xampp.conf) 找到以下内容# New XAMP

IIS服务器和xampp中的appche服务器端口冲突解决办法

今天在启动xampp中的appche的时候,发现以前能起来的现在起不来了.想到可能是最近配置的系统自带的IIS服务器把appche的端口给占用了. (appche和iis的默认端口号都是:80:) 问题来了,那么想办法解决吧. 1.解除iis服务器80端口的占用,让appche可以启动: 方法一: 控制面板-管理工具-服务-World Wide Web Publishing Service 先停止后禁用 : 方法二 :打开cmd命令行控制台,运行  net stop iisadmin /yes

Xampp apache与mySQL开不了 解决办法

Xampp安装后,打开Xampp control panel. 点击Apache对应的Start,开不了.原因是系统的服务占用了80端口,所以要么结束系统服务,要么修改apache端口. 个人比较喜欢修改端口,因为如果用别的程序(比如VS)开了80端口,如果没关端口的话又得手动关闭,很麻烦. 点击Apache对应的Start,开不了.这下只能手动关闭已经开启的SQL服务了.

IIS站点报决绝访问Temporary ASP.NET Files的解决办法

IIS站点本来运行的好好的,突然就出现了:Temporary ASP.NET Files拒绝访问的问题.遇到此类问题,请逐步排查,定可解决. 原因:Windows操作系统升级导致. 办法: 1.检查C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files目录是否有IIS_IUSRS的读写权限和NETWORK SERVICE账户的读写权限,如果没有请添加. 2.检查c:\windows\目录下是否有目录Temp,如果

转:“401 - 未授权:由于凭据无效,访问被拒绝”在iis的解决办法

今天我给自己的网站添加了https访问证书(右键我的网站-->编辑绑定-->选择443端口并指定iis默认的安全证书),但是用https方式访问资源的时候却提示401未授权~ 百度了一下,说是应用程序池权限不对造成的. 解决方法:1.打开“IIS信息服务管理器”——>选择你发布的网站——>选择功能视图中的“身份验证”——>右键匿名身份验证,选择“编辑”,选择“特定用户IUSR”:2.右键要发布的网站文件夹,选择“安全”——>“编辑”——>“添加”——>“高级

Tomcat应用访问SSL或https失败的解决办法

一,首先,解决unable to find valid certification path to requested target的问题. 其实就是要生成证书, 让tomcat读取证书 import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStream; import java

ScrureCRT访问CentOS时出现乱码的解决办法

1.  ScrureCRT访问CentOS时,出现乱码. 登陆后,输入日历命令:cal 输出日历带有乱码的结果: 2.  查看当前系统的语言. 输入命令:echo $LANG 输出:zh_CN.UTF-8 3.  修改当前系统的语言. 输入命令:LANG=en_US 4.  再次输入日历命令. 输入命令:cal 输出结果: 5.  结论. 把系统的语言改成英文就可以了.修改语言只作用于当前登录.