In my .htaccess file I require that the following sites
http://www.thelogos.net http://thelogos.net https://www.thelogos.net
all be redirected to https://the-logos.net
At the moment the first two redirect correctly but I can't get https://www.thelogos.net to redirect to https://the-logos.net. What is wrong?
Do I need to redirect https://www.thelogos.net to http://www.thelogos.net first then redirect the other two to https://the-logos.net
Among the above .htaccess file redirects, I also require a redirect of this domain, thelogos.au to https://the-logos.net
I would really appreciate your help.
My current htaccess file (which does not fully work) written by my hosting company is as follows:
RewriteEngine On
RewriteCond %{HTTP_HOST} the-logos\.net [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://the-logos.net/$1 [R,L]
RewriteCond %{HTTP_HOST} ^thelogos\.au$ [OR]
RewriteCond %{HTTP_HOST} ^www\.thelogos\.au$
RewriteRule ^/?$ "https\:\/\/the\-logos\.net\/" [R=301,L]
RewriteCond %{HTTP_HOST} ^the\-logos\.net$ [OR]
RewriteCond %{HTTP_HOST} ^www\.the\-logos\.net$
RewriteRule ^thelogos\.au$ "https\:\/\/the\-logos\.net\/" [R=301,L]
RewriteCond %{HTTP_HOST} ^the\-logos\.net$ [OR]
RewriteCond %{HTTP_HOST} ^www\.the\-logos\.net$
RewriteRule ^\https\:\/\/www\.the\-logos\.net$ "https\:\/\/the\-logos\.net\/" [R=301,L]