Search code examples
.htaccesshttphttpsforwardingno-www

Redirect Chain URL


how can I solve the following redirect chain problem ?

http://www.website.com/ > https://www.website.com/ > https://website.com/

I want the forwarding above to be like

http://www.website.com/ > https://website.com/

Please help.


Solution

  • Try:

    RewriteCond %{HTTP_HOST} !^website\.com$
    RewriteRule ^ https://website\.com [R=301,L]
    

    Place this on top of .htaccess.