Knowledge Base

Get Expert Website Hosting

Choose website reliability and expertise with SiteGround!

Home / Website Help / Other / How to redirect from HTTPS to HTTP?

How to redirect from HTTPS to HTTP?

Last update: Jun 27, 2023

To redirect your website from HTTPS to HTTP, add the following rule in your website’s .htaccess file:

# Redirect HTTPS to HTTP
RewriteCond %{HTTP:X-Forwarded-Proto} =https
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Share this article