Hi is there a way that I can redirect a wordpress.org website to another? Is there some html code I can put in the header to do this?
In the load.php file, at the top you write something like: header('Location: example.co.uk'); exit; PHP: That should redirect.
Just change the url in the general settings or better yet use .htaccess 301 redirect instead of the header redirect.
SWPatrick if it is hosted on a wordpress.org site then you can't upload the .htaccess file to the server. Header relocation is next best thing I think.
Use this code in your .HTACCESS Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L] Code (markup): It will set a 301 redirection to http://www.newdomain.com/ Change the domain accordingly. Don't forget to give the trailing slash!
Something simular i know where to get a plugin that when you make a post , when you click on the header of post will take you to an url of your choice , might be an option to you