Hi everybody,
I configured a basic httpd authentication via apache2. Look below:
AuthType Basic
AuthName "phpMyAdmin Setup"
AuthUserFile /etc/phpmyadmin/htpasswd.setup
Require valid-user
So, I rebooted apache2 but the authentication doesn't work
Where is the problem?
>
Location only matches against the path component, not the query string.
if you're in 2.4, check out . In 2.2, use mod_rewrite with a RewriteCond.
-
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional comm
>
> ServerName www.example.com
> ...
>
> Order Deny,Allow
Deny from all
> Allow from 192.168.20.0/24
>
>
Try that
On Mar 25, 2014, at 2:48 PM, pch0317 wrote:
> Hi List,
>
> Goal:only user from 192.168.20.0/24 should access "www.example.com/?q=User"
> URL. Other user shouldn't access th
Hi List,
Goal:only user from 192.168.20.0/24 should access
"www.example.com/?q=User" URL. Other user shouldn't access this location.
Issue:When I configure virtual host with "Location" statement:
ServerName www.example.com
...
Order allow,deny
Allow from 192.168.20.0/24
user from 192