错误提示如下:

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".

以上错误是因为httpd-xampp.conf做了限制造成的,仅限于本地访问按以下方法修改后即可远程访问

打开httpd-xampp.conf文件将红色部分注释,加入绿色部分即可

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

相关文章:

  • 2021-12-16
  • 2022-12-23
  • 2022-12-23
  • 2021-12-08
  • 2022-03-04
  • 2021-10-18
  • 2021-08-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
  • 2021-07-08
  • 2021-07-15
  • 2021-12-03
  • 2021-05-26
相关资源
相似解决方案