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 !

posta 2 anni fa1596 visualizzazioni
1 Risposta
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
con risposta 2 anni fa
profile pictureAWS
ESPERTO
verificato 2 anni fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande