Wordpress重定向循环错误

时间:2014-12-19 01:50:52

标签: php wordpress .htaccess loops redirect

有一个开发人员为wordpress构建主题。该网站是beonpointe.com - 试图使其生效并且网址只是重定向到/index1.html - 主机没有域转发,HTACCESS中也没有域转发。

我在主题的functions.php中找到了一个片段,但是对它进行了注释以查看它是否可行,但它仍然没有。请有人帮忙吗?!

代码段是:

<?php 
define('TEMPLATE_DOMAIN', 'beonpointe'); 
define('BOP_IS_LIVE', 'true'); 

function only_admin_access(){ 
    if( BOP_IS_LIVE == 'true' ): 
        if( !is_user_logged_in() ): 
            wp_redirect( site_url('') ); 
        endif; 
    endif; 
}
add_action('wp_top_head', 'only_admin_access'); 
?>

非常感谢。我提前谢谢你。

2 个答案:

答案 0 :(得分:0)

<?php 
define('TEMPLATE_DOMAIN', 'beonpointe'); 
define('BOP_IS_LIVE', 'true'); 

function only_admin_access(){ 
    if( BOP_IS_LIVE == 'true' ): 
        if( !is_user_logged_in() ): 
           wp_redirect( home_url() ); 
           exit;
        endif; 
    endif; 
}
add_action('wp_top_head', 'only_admin_access'); 
?>

More info ro redirect

答案 1 :(得分:0)

将以下内容添加到wp-config.php:

 $_SERVER['HTTPS'] = 'on';