本文介绍了PHP的 - 如何让页面只能在本地网络可见的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经得到了另外一个问题,我正在写在PHP中一个简单的网站,我有问题,我在本地网络中的网站的知名度,使其我用远程地址可见
Hi i've got another question, i'm writing a simple website in PHP and i have problem with visibility of my website in local network to make it visible to remote addresses i used
$_SERVER['REMOTE_ADDRESS']
,但我希望把它在我的局域网中可见。
, but i want to make it visible in my LAN.
我怎样才能做到这一点?
How can i do this ??
推荐答案
也出现在.htaccess可以允许从您的IP /子网,这样的:
also in .htaccess you can allow from your ip/subnet, like this:
Order Deny,Allow
Deny from all
Allow from 192.168.1.1/24
当然,它应该符合你的局域网
of course it should match your LAN
这篇关于PHP的 - 如何让页面只能在本地网络可见的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!