I want to protect a directory (/www) with IP only, AND IP+password. But How ?
I want a thing like this :
"...
# A user must have a known IP address
Order allow,deny
#No login/password
Allow from xxx.xxx.xxx.xxx
Allow from aaa.aaa.aaa.aaa
#IP & login/password (I know what it's not good syntax !)
<??>
Allow from yyy.yyy.yyy.yyy
Require user arthur
</??>
satisfy any
"
Thanks.