Wordpress - 如何将wordpress网站主页设置自动跳转到另外一个网页
本教程教你如何将wordpress网站的主页,设置为自动跳转到到另外一个网页,例如本来你的网站是https://wmghz.com,要将这个网页设置成跳转到https://www.wmghz.com。
以下是代码。
修改functions.php页面。
/**
* @author Donald
* @community https://www.wmghz.com/about.html
*/
function redirect_homepage_to_www() {
if ( is_front_page() ) {
wp_redirect( 'https://www.wmghz.com/', 301 );
exit;
}
}
add_action( 'template_redirect', 'redirect_homepage_to_www' );
add_filter('auto_update_plugin', '__return_false');
add_filter('auto_update_theme', '__return_false');
add_filter('automatic_updater_disabled', '__return_true');