Skip to content

Instantly share code, notes, and snippets.

@smohadjer
Forked from man-oi/.htaccess
Last active May 3, 2020 15:44
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 smohadjer/cf87e23851136ad7c767417b7f1f795f to your computer and use it in GitHub Desktop.
Save smohadjer/cf87e23851136ad7c767417b7f1f795f to your computer and use it in GitHub Desktop.
htpasswd
AuthType Basic
AuthName "only for valid users"
AuthUserFile /full/path/.htpasswd
Require valid-user
// If you don't have ssh access to your site, put the following command in a php file and upload it to your server to find out the full path to .htpasswd:
<?php echo realpath('./') . PHP_EOL; ?>
// You can create a .htpasswd using terminal:
htpasswd -c .htpasswd username
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment