Site icon Technote blog

[AWS] Create a static website with a registered domain

Lưu ý: truy cập vào subdomain vẫn qua http nên không an toàn, không truy cập với / (segments) được. Để sửa lỗi này có 2 cách:

Điền index.html vào error.html

hoạt động hiệu quả với angular mà không thấy lỗi.

Thêm redirection rules:
[
    {
        "Condition": {
            "HttpErrorCodeReturnedEquals": "404"
        },
        "Redirect": {
            "HostName": "ec2-11-22-333-44.compute-1.amazonaws.com",
            "ReplaceKeyPrefixWith": "report-404/"
        }
    }
]

Chưa test.

Exit mobile version