I have a domain like:
this.that.com
(it can also be accessed from:)
that.com/this
What I would like to do is make it so that the server transfers all requests from the two above url’s to:
this.com
I need it so if I type in this.that.com
it will auto transfer to this.com
thanks in advance.
To redirect all requests to
this.com, match everything, which is not alreadythis.comIf you want to redirect to the main page instead, leave out the URL path
If everything works as expected, you can switch to
R=301redirection.