在aws beanstalk和cakephp上强制https导致“太多重定向”

时间:2016-06-24 15:37:27

标签: php apache .htaccess https elastic-beanstalk

我正在使用此.htaccess文件在AWS Beanstalk上部署我的cakephp 2.6网站

<IfModule mod_rewrite.c>

  RewriteEngine on

  RewriteRule ^$ app/webroot/
  RewriteRule (.*) app/webroot/$1

  # Redirect força HTTPS
  RewriteCond %{HTTPS} !=on
  RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [NC,L,R=307]

</IfModule>

我需要强制使用httpS并将app / webroot用作默认文件夹。

没有https规则,它运行正常,但现在我收到too many redirects错误。

任何想法?

0 个答案:

没有答案