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 configured in the file “httpd-xampp.conf”.

解决办法:

find / -name "httpd-xampp.conf"

打开httpd-xampp.conf

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

将Deny from all 或者 Require local这一行注释掉,即可
#Deny from all
注:需要重启apache[/opt/lampp/lampp restartapache]

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

时间: 2024-11-02 21:25:39

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

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, p

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

New XAMPP security concept

在一台电脑上访问另一台电脑上的xampp服务器时,有时会出现New XAMPP security concept这种情况.这是因为xampp限制了只能本机访问服务器,不能用其他 电脑来访问. 解决方法: 1. 修改httpd-xampp.conf(ubuntu系统在/opt/lampp/etc/extra目录下),找到下面这几行: "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))&

xampp访问phpmyadmin访问不了

我的xampp版本是xampp-linux-x64-5.6.15-2-installer.run, 浏览器输入“我的ip/phpmyadmin”出现如下问题: 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 "http

XAMPP:访问phpmyadmin出错的解决方案

来源:http://www.ido321.com/1246.html XAMPP(Apache+MySQL+PHP+PERL)是一个功能强大的建 XAMPP 软件站集成软件包,轻巧,用起来很方便.它提供了强大的phpmyadmin数据库管理工具,让使用者对数据库的使用和管理得心应手.对于不能在本地打开phpmyadmin的问题,我的解决方案如下: MySQL有一个默认的专用端口:3306,所以,如果你之前独立安装了MySQL,那么3306端口已经被占用.安装XAMPP集成的MySQL时,必须重新

spring boot跨域请求访问配置以及spring security中配置失效的原理解析

一.同源策略 同源策略[same origin policy]是浏览器的一个安全功能,不同源的客户端脚本在没有明确授权的情况下,不能读写对方资源. 同源策略是浏览器安全的基石. 什么是源 源[origin]就是协议.域名和端口号.例如:http://www.baidu.com:80这个URL. 什么是同源 若地址里面的协议.域名和端口号均相同则属于同源. 是否是同源的判断 例如判断下面的URL是否与 http://www.a.com/test/index.html 同源 http://www.a

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

问题场景: 本机搭建一个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.co

xampp只允许本地访问,禁止远程访问

远程访问phpmyadmin的时候出现错误 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". 意思是xampp的安全配置只允许本地网络的访问请求,需要配置httpd-xampp.conf,打开这个文件,找到 &l