Last active
July 17, 2019 18:22
-
-
Save endurtech/4b33d763254061f672d39e2ee2a4590b to your computer and use it in GitHub Desktop.
Redirect HTTPS traffic to HTTP
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
| # Redirect HTTPS to HTTP | |
| RewriteCond %{HTTP:X-Forwarded-Proto} =https | |
| RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment