fatBuzz of Fatbuzz Development Team
12/18/2017 - 10:42 AM

HTTP Redirects

Add either of the following files o the domain's .htaccess file.

<IfModule mod_rewrite.c>
# BEGIN Force https to http
RewriteEngine On
RewriteCond %{HTTPS} =on
RewriteRule ^(.*) http://%{HTTP_HOST}/$1 [R=301,L]
# END Force https to http
</IfModule>
<IfModule mod_rewrite.c>
# BEGIN Force http to https
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*) https://%{HTTP_HOST}/$1 [R=301,L]
# END Force http to https
</IfModule>