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 !

asked 2 years ago1527 views
1 Answer
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
answered 2 years ago
profile pictureAWS
EXPERT
reviewed 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions