Root Path Pattern

0

How can I create a pattern only for the default page i.e. https://example.com or https://example.com/

I created a path pattern /
But everytime it just falls through to the default bucket. What am I doing wrong? Thanks!

DSB
質問済み 5年前182ビュー
2回答
0

For just root, "/" should do it.

Did you wait for it to fully propagate before testing with a cleared cached? Any CF changes can take 20+ minutes to take effect.

回答済み 5年前
0

Yes I did wait for it to propagate. But I figured out the issue if anyone else runs into this!

Specify a Default Root Object is the culprit. If you specify a default root object for your cloudfront distribution, that supersedes any path pattern you have, and I'm pretty sure immediately executes through the default bin. So if you have a lambda @ edge function for the default bin it will still call that one.

What I did was remove the default root object, then in my Path Pattern '/' behavior, I redirected to '/index.html' (or whatever your default root object was) once I performed my needed functions in my lambda function. Hope this helps!

DSB
回答済み 5年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ