Skip to content

Instantly share code, notes, and snippets.

@MrJoshFisher
Created December 12, 2020 23:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MrJoshFisher/20a71f91cef1747fefdc5248c0ed05b5 to your computer and use it in GitHub Desktop.
Save MrJoshFisher/20a71f91cef1747fefdc5248c0ed05b5 to your computer and use it in GitHub Desktop.
[Rewrite URLS to File] #htaccess
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]
Header always set Content-Security-Policy "upgrade-insecure-requests;"
RewriteRule ^page-1$ page.php?area=1
RewriteRule ^page-2$ page.php?area=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment