Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

moving your site from testsite.com => testsite.net

hi is there a way i could transfer my site from testsite.com => testsite.net ??

i've found a solution online that might help, but haven't tested it on running to a real forum, im planning to move my forums. has anyone used this solution?

  1. park your new domain to your current hosting account,
  2. put a code on .htaccess to point it to a new domain:

<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} ^olddomain.com$ [OR] RewriteCond %{HTTP_HOST} ^www.olddomain.com$ RewriteRule (.*)$ http://www.newdomain.com/$1 [R=301,L] </IfModule>

im using 301 to let search engine know that im moving my content to testsite.net

is this process healthy? or if anyone can suggest, that would be great.

Best Answer

Answers

  • @phreak yep i've done this on my site and it works like a breeze. :) i'll just post it anyway to help other people encounter same things i encountered :)

Sign In or Register to comment.