I am using AWS codestar to deploy by react application using serverless nodejs template. This is the url that is given by codestar after successfully completion of all the stages https://xxxxx.execute-api.us-east-1.amazonaws.com/Prod
. This url displayed all the components in my app correctly. In navbar of my app i have items like this a
,b
,c
. where clicking on each one of them will redirect to a new component.(i.e.https://xxxxx.execute-api.us-east-1.amazonaws.com/a
,https://xxxxx.execute-api.us-east-1.amazonaws.com/b
etc. But when i refresh the page which is having a url like this https://xxxxx.execute-api.us-east-1.amazonaws.com/b
i am getting a error like {"message":"Forbidden"}
and in my console it is showing like this favicon.ico:1 GET https://xxxx.execute-api.us-east-1.amazonaws.com/favicon.ico 403
It seems the chrome is fetching the favicon based on the https
link, which fails because there is no such favicon
at the location. I tried to remove favicon.ico link
in index.html but even then the chrome is using the same url to fetch the favicon which eventually fails. I followed max number of suggestions in SO to acheive this but no luck. Is there any way to say api-gateway
to exclude these favicon get requests
and display my app rather than showing message forbidden
.
And i am pretty sure that i had enabled logs for both the agi-gateway and lambda where i didnt find any forbidden errors(i.e.403) which is weird because i can see those 403 errors in my console.
Thanks Any help is highly appreciated.
The
https://xxxxx.execute-api.us-east-1.amazonaws.com/Prod
url provided by API Gateway is the base url for your site, so those paths would have to be/Prod/a
instead of/a
.One way to get around that is to register your own domain and connect it to API Gateway via a custom domain. That would allow you to have
https://example.com
as your base url, and your paths could stay/a
,/b
, etc.