我在客户机上安装了 Apache。但在许多脚本中我遇到以下情况:
if (!in_array(@$_SERVER['REMOTE_ADDR'], array(
'127.0.0.1',
'::1',
))) {
header('HTTP/1.0 403 Forbidden');
exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
}
我可以在 Apache 或 Virtualbox 中创建虚假 IP 吗?