.htaccess to redirect any URL from a domain to a fixed URL on another domain
- by AlexV
Anyone can help me out with an .htaccess I'm trying to create?
I want to redirect foo.com to foo.ca.
Any URL from foo.com (with or without www and under http or https) will all be redirected to www.foo.ca.
Some examples:
http://www.foo.com/ -- http://www.foo.ca/ (http + www)
https://www.foo.com/ -- http://www.foo.ca/ (https + www)
http://foo.com/bar/ -- http://www.foo.ca/ (http + some url)
https://foo.com/bar/ -- http://www.foo.ca/ (https + some url)
http://www.foo.com/bar/ -- http://www.foo.ca/ (http + www + some url)
https://www.foo.com/bar -- http://www.foo.ca/ (https + www + some url)
Many thanks!