Remove trailing slashes from AWS S3 stating webhosting site

0

I have generated my WordPress website as static html and deployed it to s3 bucket to serve as static website.

Here is my website endpoint: wwwalls.com

My SEO team wants that the page URLs must not contain trailing slashes, but I could not find any document online that could allow me to get rid of trailing slashes from the URL eg : https://wwwalls.com/demo leads to https://wwwalls.com/demo/

I tried using redirects but then it ends up in too many redirects.

[
    {
        "Condition": {
            "KeyPrefixEquals": "demo/"
        },
        "Redirect": {
            "ReplaceKeyPrefixWith": "demo"
        }
    }
]

Please advice !

1回答
1

May you try this LambdaEdge function: LambdaEdgeRemoveTrailingSlash ?

It seems to solve your issue.

You may read more about LambdaEdge here too: https://aws.amazon.com/lambda/edge/

AWS
回答済み 2年前
profile pictureAWS
エキスパート
レビュー済み 2年前

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

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

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

関連するコンテンツ