I’ve been searching this for months. Is there a plugin to redirect all pages to home? Or should i just put redirect to page.php template file?
I only have one pager and i need to redirect all pages to home (not posts)
Thank you
I’ve been searching this for months. Is there a plugin to redirect all pages to home? Or should i just put redirect to page.php template file?
I only have one pager and i need to redirect all pages to home (not posts)
Thank you
You must be logged in to post a comment.
Either your solution, or you can use
.htaccess
redirect rules, like:or just simple PHP solution, like (you’re able to redirect traffic by putting the following line at the very top of a PHP document, nothing can be above it):
More about
.htaccess
file redirection here.EDIT:
Place the code below in your
.htaccess
file.This will direct everything from the old host to the root of the new host:
I use the following code in functions.php
You could also redirect just a specific page-template when you replace
is_page()
withis_page_template('mytemplate.php')
.