2

我对我当前的项目有一个 htacces 保护:

<filesMatch "\.(htm|html|php)$">
    AuthGroupFile /dev/null
    AuthName "secured"
    AuthType Basic
    AuthUserFile /var/www/html/web/.htpasswd
    require valid-user
</filesMatch>

保护工作正常,但我的静态文件来自 aws cloudfront,有些文件也要求提供 htaccess 凭据。我能做些什么来阻止这种情况?

非常感谢。

4

1 回答 1

1
AuthType Basic
AuthName "Restricted Area"
AuthUserFile /var/www/html/web/.htpasswd
AuthGroupFile /dev/null 
Require valid-user
SetEnvIf Host cloudfront.net allow
SetEnvIf Request_URI "(status.php)$"  allow
SetEnvIf Request_URI "(appredirect.html)$"  allow
Order allow,deny
Allow from env=allow
Satisfy

这是当前设置,但允许主机 cloudfront.net 没有帮助。

于 2013-01-24T09:54:08.847 回答