apache2.4.9以上版本允许远程访问的方法

apache升级后,其配置稍有差别。在工作中,经常需要在不同的机器或终端访问本地应用。本文将介绍apache的设置以便开启远程访问。

apache2.49+版本设置方法:

httpd.conf

…</..>

中将 Require local 改成 Require all granted

低版本中将 Deny from All 改成 Allow from All或 Allow from 指定IP.

0%