Hi
I'm using cpanel with litespeed. I have a private folder: /private/ that need to be passworded via htaccess / htpassword.
The authentication is prompted when I access /private/. However, the authentication is not prompted if I access /private/index.php
How do I force index.php to go through the auth as well?
I'm using cpanel with litespeed. I have a private folder: /private/ that need to be passworded via htaccess / htpassword.
Code:
AuthType Basic
AuthName "Authorized Only"
AuthUserFile "/home/user/.htpasswds/public_html/private/passwd"
require valid-user
How do I force index.php to go through the auth as well?