I am using wordpress blogging script. I have blog on subdomain. Now i want to move my blog to main domain. I have copied all the content to home directory I have changed setting in dashboard >> general setting. How do i make all post 301 redirection to new URL. Take note that I wan to redirect exact post URL to its new exact URL. For example, http://blog.domain.com/2009/11/post-url/ Redirects to.... http://www.domain.com/2009/11/post-url/
.htaccess for http://blog.domain.com root directory RewriteEngine on RewriteBase / RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L] Code (markup):
be sure to add www. before domain.com above too You will also need to amend the options in the wp_options table to reflect the new URL