Skip to content

Instantly share code, notes, and snippets.

@itsnahidhasan
Created January 31, 2020 03:37
Show Gist options
  • Save itsnahidhasan/2513bc310c340891210d57bd6cbd83f8 to your computer and use it in GitHub Desktop.
Save itsnahidhasan/2513bc310c340891210d57bd6cbd83f8 to your computer and use it in GitHub Desktop.
# HTTPS to HTTP Redirect - put the snippet top of .htaccess file
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment