Creating a Wordpress redirection page

This is the simplest way to add a page redirection feature to your WordPress theme.

First, create a new theme file called redirect.php with the following contents:

<?php<br></br>/*<br></br>Template Name: Redirect<br></br>*/<br></br> the_post();<br></br>header('Location: ' . get_the_content());<br></br>die();

To create a new redirection page:

  1. New page, change the template to 'Redirect'
  2. Switch to HTML editing mode and put the url in the content area.

#wordpress