0

有没有办法限制对 WordPress 中特定页面的特定 IP 地址的访问?在网上找不到任何资源来解决这个问题。

假设我的网站是 example.com,我有一个页面 example.com/free/ 只有特定的 IP 地址可以访问。其他页面应该对公众开放。

4

1 回答 1

0

您可以创建一个 Wordpress(MU) 必备插件。

在插件中:

$request_uri = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
if ($request_uri === '/free') {
  if(ip_address_allowed){
  }
  else{
    //redirect to where -ever
  }
}
于 2020-02-05T12:34:46.293 回答