Not signed in (Sign In)

The Intervals Forum

Categories

Vanilla is a product of Lussumo. More Information: Documentation, Community Support.

Welcome Guest!
Want to take part in these discussions? If you have an account, sign in now.
If you don't have an account, apply for one now.

Ways to use Intervals

Redirect a domain to my intervals domain

Bottom of Page

1 to 5 of 5

  1.  
    • CommentAuthorjoshreeder
    • CommentTimeAug 25th 2010
     
    how can i redirect a sub domain (my.vinecreative.com) to my my intervals domain (http://vinecreative.intervalsonline.com/) to simply things internally.

    I have tried it multiple ways a cname record, .htaccess entry and they all get to the my intervals site but get an error? What could possibly be the problem, i have tested with and without http:// with no luck.

    Above links are working to see what I'm talking about... Seems like a simple task everyone would want to do.
    •  
      CommentAuthorjreeve
    • CommentTimeAug 25th 2010
     
    It looks like the current .htaccess redirect is erroring out on the server. I'm not sure what is wrong with the redirect rules without seeing the contents of the .htaccess file.

    However, I was able to write and test a few lines of code that will work for the redirect. Put these into your .htaccess file and all requests for my.vinecreative.com will be redirected to vinecreative.intervalsonline.com.


    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^my\.vinecreative\.com$ [NC]
    RewriteRule ^(.*)$ http://vinecreative.intervalsonline.com/ [L,R=301]
    • CommentAuthorjoshreeder
    • CommentTimeAug 25th 2010
     
    Really brilliant, Thanks - and a great feature to have available as people are setting this up. Would love to see it added in the setup text as it is not easily executed outside of your advice through normal registrar or hosting solutions. Mediatemple's knowledgebase article for the solution did not work.
    • CommentAuthortschouten
    • CommentTimeSep 27th 2011 edited @ 10/20/2011 7:56 am
     
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^abc\.mysite\.ca$ [NC]
    RewriteRule ^(.*)$ http://abc.timetask.com/ [L,R=301]

    in the htaccess file is not redirecting when pointing my browser to abc.bcaredfor.ca. Any idea why?
    • CommentAuthortschouten
    • CommentTimeSep 27th 2011
     
    Hmm the moment I posted it started working... ;-) funny. Cheers