尝试在弹性beantalk应用程序上重定向/重写文件

时间:2018-12-19 18:07:52

标签: php apache amazon-web-services .htaccess amazon-elastic-beanstalk

我有一个.htaccess文件,该文件可重定向文件等。我试图使其在我的Elastic beantalk应用程序上运行。我尝试将其添加到目录的根目录中没有任何运气。我也尝试过在.ebextensions中制作一个.config文件,但还是没有运气。有谁知道如何在AWS Elastic beantalk上重定向/重写文件?

此外,我制作的这个Elastic Beanstalk应用程序是我在AWS上做过的第一件事,也是唯一的一件事,所以我是个超级新手,对AWS不太了解。

配置文件:

files:
   /etc/httpd/conf.d/http-redirect.conf:
     mode: "000644"
     owner: root
     group: root
     content: |
       RewriteEngine On
       RewriteRule ^([_0-9a-z-]+)/controller.php /developers/controller.php
       RewriteRule ^([_0-9a-z-]+)/([_0-9a-z-]+)/controller.php /developers/controller.php
       RewriteCond %{REQUEST_FILENAME} -f
       RewriteCond %{REQUEST_FILENAME} -d
       RewriteRule ^(/404|/js|/css|/img)+ /developers/index.php

0 个答案:

没有答案