根据我的要求我有一个php应用程序。我想在特定系统上运行应用程序。如果它也托管在服务器上。假设我的网站是www.xyz.com。这个网址应该只从我的系统打开而不是来自其他系统。
我尝试过以下代码
$ipAddress=$_SERVER['REMOTE_ADDR'];
$macAddr=false;
#run the external command, break output into lines
$arp=`arp -a $ipAddress`;
$lines=explode("\n", $arp);
#look for the output line describing our IP address
foreach($lines as $line)
{
$cols=preg_split('/\s+/', trim($line));
if ($cols[0]==$ipAddress)
{
$macAddr=$cols[1];
}
}
如何实现这个
由于
答案 0 :(得分:1)
在.htaccess文件中,写下
order deny,allow
deny from all
allow from 'write your ip address here'