allowed_redirect_hosts

过滤钩子
apply_filters( 'allowed_redirect_hosts', array( $wpp['host'] )
参数
  • (string[]) $hosts An array of allowed host names.
    Required:
  • (string) $host The host name of the redirect destination; empty string if not set.
    Required:
定义位置
相关勾子
wp_redirect_statusold_slug_redirect_post_idallow_subdirectory_installblog_redirect_404login_redirect
相关方法
allowed_http_request_hostsms_allowed_http_request_hostsredirect_postallow_subdirectory_installwp_redirectmaybe_redirect_404
引入
2.3.0
弃用
-

allowed_redirect_hosts是一个过滤器,允许你修改WordPress网站重定向到的主机列表。这个过滤器适用于允许从一个网站重定向到的主机列表,有助于防止重定向到恶意网站。

过滤允许重定向到的主机列表。

$allowed_hosts = (array) apply_filters( 'allowed_redirect_hosts', array( $wpp['host'] ), isset( $lp['host'] ) ? $lp['host'] : '' );

常见问题

FAQs
查看更多 >