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.
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]
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.