阻止来自其他设备的连接

时间:2017-11-25 10:40:06

标签: php html node.js

我有一个网站,我只想让移动设备进入网站。所以我的问题是如何阻止来自其他设备的连接。

我可以在我的网站上使用node.js html和php。

1 个答案:

答案 0 :(得分:0)

您可以在PHP中使用mobile detect类,然后使用如下代码:

// if visitor is not using any mobile device (phones or tablets).
if ( !$detect->isMobile() ) {
    die("access denied")
}