Created
January 31, 2020 03:37
-
-
Save itsnahidhasan/2513bc310c340891210d57bd6cbd83f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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