1 Answer
- Newest
- Most votes
- Most comments
3
When a page like https://example.com/index.html
is accessed, and it includes additional resources such as a favicon, CSS, JavaScript, and images, each of these resources is requested separately by the browser. Therefore, in the scenario you described, there would be a total of 5 HTTP/HTTPS requests made to the CloudFront distribution:
https://example.com/index.html
(HTML page)https://example.com/images/favicon.ico
(Favicon)https://example.com/css/style.css
(CSS stylesheet)https://example.com/js/script.js
(JavaScript file)https://example.com/images/logo.jpg
(Image)
Each of these requests is counted separately by CloudFront. So, in this case, CloudFront would count 5 requests. This is important to consider for monitoring, billing, and performance optimization purposes.
Additional
To monitor the number of requests made by your website, you can use the Request Checker, which tracks the total number of requests made.
Relevant content
- asked 3 years ago
- AWS OFFICIALUpdated 9 months ago
- AWS OFFICIALUpdated 9 months ago
- AWS OFFICIALUpdated 2 years ago