Skip to content

Instantly share code, notes, and snippets.

View smohadjer's full-sized avatar

Saeid Mohadjer smohadjer

View GitHub Profile
@smohadjer
smohadjer / .htaccess
Last active May 3, 2020 15:44 — forked from man-oi/.htaccess
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