Hello! Stupid as I am I put my blog at this adress: http://bitsniff.com/blog. At the time I did that the blog was only temporary and something I did for fun, but now I want to start serious with the blog and I want to move the blog to http://www.bitsniff.com, but then all the current links that points to my blog will get a 404, and I don't want that. Is there any smart way of moving the blog to this new adress, but at the same time redirecting all the links to the posts on the old adress to the same posts but on the newer adress? Thanks, Karl.
try Htaacess , the one way for trensfer the enternal links to your webblog to redirect it to the right files and posts ! Thnaks Good luck
Move all the files to the root directory, then update the config file. Then do a 301 redirect with htaccess
Not sure this will redirect: http://www.mydomain.com/blog/post-1-health.html to http://www.mydomain.com/post-1-health.html
The easiest way I found for redirecting a blog is creating an index.php file with this inside and dropping it in your domain root <? Header( "HTTP/1.1 301 Moved Permanently" ); Header( "Location: http://www.mydomain.com/blog" ); ?> PHP: