I have a series of interlinked web pages, and I want to restrict access to these pages by asking the user to provide a login and password. However, my hosting account curren
You can create a file .htaccess with something like this :
AuthUserFile path/to/password.txt AuthGroupFile /dev/null AuthName "Acces Restreint" AuthType Basic require valid-user
You then have to create the .htpasswd file.