Change homepage url

i think this can help you:

use the below code in your theme’s functions.php

function redirect_homepage() {
    if( ! is_home() && ! is_front_page() )
        return;

    wp_redirect( 'http://siteurl.com/news', 301 );
    exit;
}

add_action( 'template_redirect', 'redirect_homepage' );

Leave a Comment