在ALB的Listener Rules中添加一个default rule,将默认路由路径重定向为您希望的默认路径(如/index.html)。
修改Apache的配置文件,将代理规则的匹配模式改为“/”而非“/*”,并添加一个RewriteRule,将根路径(“/”)重定向到您希望的默认路径(如/index.html)。
示例代码:
ALB Listener Rule 默认重定向到/index.html:
Action:Redirect Redirect URL:https://example.com/index.html Status code:HTTP_301
Apache 配置文件修改:
ProxyPass / https://example.com/ ProxyPassReverse / https://example.com/
RewriteEngine On RewriteRule ^/$ /index.html [R=301,L]