使用 Elastic Beanstalk 中的自定义环境属性进行 htaccess

使用 Elastic Beanstalk 中的自定义环境属性进行 htaccess

有没有办法在 htaccess 中使用 elastic beanstalk 的自定义环境属性?我只想在不在本地运行时将 http 重写为 https,所以我认为我可以通过使用 elastic beanstalk 的环境属性作为条件来做到这一点。

RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule !/status https://%{SERVER_NAME}%{REQUEST_URI} [L,R=301]

答案1

您可以在以下链接中找到类似问题的解决方案:

https://stackoverflow.com/questions/21878024/configure-apache-on-elastic-beanstalk

相关内容