Skip to content

Instantly share code, notes, and snippets.

@vielhuber
Created April 6, 2015 18:09
Show Gist options
  • Save vielhuber/c787dd75c0dc62de7ac2 to your computer and use it in GitHub Desktop.
Save vielhuber/c787dd75c0dc62de7ac2 to your computer and use it in GitHub Desktop.
Apache: htaccess Prevent doubled password request #server
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
<If "%{HTTPS} == 'on'">
AuthUserFile /path/to/.htpasswd
AuthName "Interner Bereich"
AuthType Basic
require valid-user
</If>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment