HTTP 404 error from ALB

0

I have an ALB with a target group with two EC2 instances running Apache with a simple hello world index.html. Both the instances are healthy and accessible using their public IP. If I configure the listener default rule to the target group it works fine. But if I configure the same target group using a path based rule like '/product', it gives 404 error. What can go wrong?

Velu
gefragt vor 10 Monaten795 Aufrufe
2 Antworten
0
Akzeptierte Antwort

Setting a path based rule like /product simply means that any request that has a URI ending in /product would now be forwarded to your target group. It does not rewrite the URI.

Your Apache Server presumably would not have a document to serve for http://<your-domain/product and therefore returns a 404 to the ALB.

AWS
EXPERTE
beantwortet vor 10 Monaten
profile picture
EXPERTE
überprüft vor 10 Monaten
profile pictureAWS
EXPERTE
überprüft vor 10 Monaten
0

Hello.
Is there a directory named "/product" in your target EC2 path?
If there is no content in this directory, a 404 error will be generated.

profile picture
EXPERTE
beantwortet vor 10 Monaten
profile pictureAWS
EXPERTE
überprüft vor 10 Monaten
  • I understand your answer also means the same but I couldn't understand immediately. With additonal information from Max's answer it was a bit clearer. Thanks anyway.

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen