This is regarding: Site and Server Administration Can anyone lead me in the right direction here? I have a website that I put a blog on, and now I would like to permanently move the blog to its own domain and permanently move the website to a new domain. I'll illustrate: 301 redirect: "www.mydomain.com/blog/" to "www.newblogdomain.com" 301 redirect: "www.mydomain.com" to "www.newmydomain" I read online that I can create an .htaccess file in whichever directory I would like to forward. Does that mean I can create two .htaccess files for the same domain and put one in the directory and the other in the root and split the redirects to two different domains? Here is the .htaccess file I was planning on uploading to the /blog/ directory: redirect 301 /stefansblog/ http://www.dialecticalreasoning.com/
Please this .htaccess in your home directory. RewriteEngine on RewriteRule ^blog/(.*)$ http://www.newblogdomain.com [R=301] RewriteRule ^(.*)$ http://www.newmydomain [R=301]
Thanks for the help! I am going to give this a shot and I'll come back here and thank you again when it works
Thanks for checking back with me. Right now, I don't have access to the root level of the server and can only access the public_html files. I am in the midst of transferring to a new fully manged server, and this is where I will need to implement the change. I am still getting all of my ducks in a row, as soon as I implement the 301, I'll come back here and report the results. Thanks for the help!