Elasticbeanstalk - Apache 和 htaccess

Elasticbeanstalk - Apache 和 htaccess

我正在尝试使用 apache 在 Elasticbeanstalk 上运行 WordPress 网站。当我使用 nginx 运行它时,一切正常,但使用 apache 时,我收到以下错误:

var/www/html/.htaccess: <IfModule not allowed here, referer: http://www.example.com/

我是否需要在 elasticbeanstalk 中添加更多配置或者修改 httpd.conf 来解决这个问题?

谢谢

答案1

我也遇到了同样的错误,并通过手动更新 /etc/httpd/conf/httpd.conf 文件并添加以下内容解决了该问题:

<Directory "/var/www">
    AllowOverride ALL
    Require all granted
</Directory>

然后通过运行以下命令重新启动 apache 服务:

sudo systemctl restart httpd

相关内容