Reputation: 8421
How do I configure ELB to redirect all error traffic to a website say www.myhome.com
instead of it printing `CANNOT GET /efsdf'
Upvotes: 1
Views: 745
Reputation: 53535
You can't. This is a load balancer - it "balances" traffic by redirecting it to instances. You'll have to handle the request when it arrives to your instance (at the web-server/application level).
Upvotes: 1