Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • still not working…

    I have the same problem. It’s not redirecting from https to http. I have this:

    RewriteEngine On
    <IfModule mod_rewrite.c>
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    # END WordPress
    
    # force all URLs from https to http
    RewriteCond %{HTTP_HOST} !^$
    RewriteCond %{HTTP_HOST} !^blog\. [NC]
    RewriteCond %{HTTPS} off
    RewriteRule ^ https://blog.%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE]
    </IfModule>

Viewing 2 replies - 1 through 2 (of 2 total)