<Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Allow from all #以前是Deny from all </Directory> <Directory "F:/Program Files/wamp/www/"> # # Possible values for the Options directive are "None",…
在 httpd.conf 中查找 Allow from 127.0.0.1 Order Deny,Allow Deny from all Allow from 127.0.0.1 在此下面加上 Allow from all 如: Order Deny,Allow Deny from all Allow from 127.0.0.1 Allow from all 重启Wamp后 生效…
[Solution] Update firewall policy 1) Disabled docker rules of iptables --- docker will create rules of iptables automatically. # vim /etc/docker/daemon.json 1) Add masquerade to public zone # firewall-cmd --permanent --zone=public --add-ma…
编写内容保存为bat @echo off &setlocal enabledelayedexpansion Rem '/*========获取本机的IP地址(局域网)=========*/ echo "please wait" for /f "tokens=2 delims=:" %%b in ('ipconfig^|find /i "ip"') do set fsip=%%b echo %fsip% set CT=%computerna…