How to redirect my homepage
Two options that I’ve used to solve this issue: Homepage template file Create a front-page.php file, which is the template file used by WordPress for your homepage, it takes priority over page.php, see this for more reading on page template priority. In your front-page.php file, add the following code: <?php header(‘Location: https://yoursite.com/subpage’); die(); 301 Redirect … Read more