我将来自网络的以下.htaccess汇集在一起以允许我们三个位置的任何用户访问网站,对于那些位置以外的用户,我希望能够使用密码进行访问。
以下内容为我提供了500内部服务器错误(为了安全起见,我用' x'替换了任何号码,仅针对此问题)
Options +FollowSymLinks
RewriteEngine On
<Files *>
AuthUserFile /.htpasswd
AuthName "Enter password"
AuthType Basic
Order deny,allow
Deny from all
#Location 1
allow from xxx.x.xx
#Location 2
allow from xx.xxx
#Location 3
allow from xxx.xx
Require valid-user
Satisfy any
</Files>