我的网站中有一个文件夹,例如https://example.com/xyz/asd
我想限制 asd 文件夹的所有文件和文件夹。
我们正在使用负载均衡器,它只在访问日志中提供负载均衡器的 IP 地址。
我已将此 .htaccess 文件放在 asd 文件夹中。
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP:X-FORWARDED-FOR} !^(xxx\.xxx\.x\.xx|yyy\.yy\.y\.yy)$
RewriteRule ^$ http://xxx.xxx.x.xx/access_denie.php [R=301,L]
我使用基于 HTTP:X-FORWARDED-FOR 的 Allow access in htaccess 中的此解决方案,但它不适用于我的情况。