gpt4 book ai didi

wordpress - 如何禁用 Wordpress/Woocommerce 中的自动 https 重定向?

转载 作者:行者123 更新时间:2023-12-05 08:11:55 26 4
gpt4 key购买 nike

我安装了一个 wordpress + woocommerce 网站。所有页面都使用 https。我怎样才能避免它?我只需要 http。

编辑:在 wp_options 表中,我在 phpMyAdmin 中将“home_url”和“base_url”都设置为以 http 开头。但它不起作用。为什么?

最佳答案

无论如何要更改和重定向 https 页面,您需要在 functions.php 中使用以下内容

function force_http () {

if ( is_ssl() ) {
wp_redirect('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], 301 );
exit();
}
}
add_action ( 'template_redirect', 'force_http', 1 );

关于wordpress - 如何禁用 Wordpress/Woocommerce 中的自动 https 重定向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43746227/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com