how can i redirect a sub domain (my.vinecreative.com) to my my intervals domain (https://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 https:// 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 ^(.*)$ https://vinecreative.intervalsonline.com/ [L,R=301]
RewriteEngine On
RewriteCond %{HTTP_HOST} ^abc\.mysite\.ca$ [NC]
RewriteRule ^(.*)$ https://abc.timetask.com/ [L,R=301]
in the htaccess file is not redirecting when pointing my browser to abc.bcaredfor.ca. Any idea why?
1 to 5 of 5
Comments are closed.
For more Intervals help documentation, please visit help.myintervals.com