View Single Post
  #2  
Old 07-16-2007, 12:32 PM
jadebox's Avatar
jadebox jadebox is offline
Roger Smith/JonRocket.com
 
Join Date: Nov 2006
Location: Oviedo, FL
Posts: 1,008
Default

Quote:
Originally Posted by Ltvscout
I now have a domain name for YORF. You can now get to this site by going to www.oldrocketforum.com. The original way of getting here by going to http://forums.rocketshoppe.com will always continue to work as well. I just find it easier going to a regular website address vs a sub-domain address. If you do start using the method of going to www.oldrocketforum.com, you'll need to re-login to the forum.


If you setup a "301" redirect from www.oldrocketforum.com to http://forums.rocketshoppe.com, then visitors won't have to re-login.

You can add something like to following to your .htaccess file:

RewriteEngine On
RewriteCond %{HTTP_HOST} oldrocketforum.com$ [NC]
RewriteRule ^(.*)$ http://forums.rocketshoppe.com/$1 [L,R=301]

Or .. if you want oldrocketforums.com to be the "standard" URL, use:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^forums.rocketshoppe.com$ [NC]
RewriteCond %{HTTP_HOST} ^oldrocketforum.com$ [NC]
RewriteRule ^(.*)$ http://www.oldrocketforum.com/$1 [L,R=301]

-- Roger
Reply With Quote