如何在 Apache 中拒绝任何 IP(除了一个 IP 地址)访问页面,但对该授权 IP 地址进行基本身份验证?谢谢
答案1
/一些/位置/.htaccess
Allow from 149.15.90.70
deny from all
AuthType basic
AuthName "My Protected Page"
AuthBasicProvider file
AuthUserFile /staff/widricd/htpasswd
Require user mint
如何在 Apache 中拒绝任何 IP(除了一个 IP 地址)访问页面,但对该授权 IP 地址进行基本身份验证?谢谢
/一些/位置/.htaccess
Allow from 149.15.90.70
deny from all
AuthType basic
AuthName "My Protected Page"
AuthBasicProvider file
AuthUserFile /staff/widricd/htpasswd
Require user mint