View Full Version : Redirect HTTPS to HTTP
This .htaccess rule appears to be working to redirect HTTPS to HTTP:
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
rossgross
03-31-2023, 06:44 AM
Steps to Change Your Site from HTTPS to HTTP on Non-WP Hosting
Log in to the ACC.
Click Domains in the left sidebar.
Click Manage Your Domain Names in the drop-down.
Click the name of the domain that you want to change to HTTP.
Find the Change Non-SSL Site Display Option button and click it.
Regards,
Rachel Gomez
david007
10-07-2024, 10:04 AM
The `.htaccess` rule for redirecting HTTPS to HTTP typically looks like this:
```apache
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
```
This rule forces the website to redirect from HTTPS to HTTP by checking if HTTPS is enabled and then rewriting the URL to HTTP.
Powered by vBulletin® Version 4.2.5 Alpha 2 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.