getting issue while redirecting 301 xyz.com/ab to www.xyz.com/ab from load balancer using ECS service

0

I am using ECS service and using ELB to deploy my site and i have set A type record with ELB (xyz.com) and CNAME record for www.xyz.com and then using rules to redirect from xyz.com to www.xyz.com.

but then issue is that it is not redirecting xyz.com/ab to www.xyz.com/ab

this is my rule IF host is xyz.com THEN redirect to https://www.xyz.com/

and the thing is path is no fixed here.

2 Answers
1
Accepted Answer

You need to change the redirect to take into account the path and query. Please try the following

Setting the Full URL to be https://www.xyz.com:#{port}/#{path}?#{query} for the redirected url.

profile picture
EXPERT
answered a month ago
profile picture
EXPERT
reviewed a month ago
profile picture
EXPERT
reviewed a month ago
  • yes this worked thank you

0

Hello,

The rule should be something like this Redirect to https://xyz.com:443/#{path}?#{query}

Please check this Knowledge Center article describing "How can I use an Application Load Balancer to redirect one domain to another?"

profile pictureAWS
answered a month ago
profile picture
EXPERT
reviewed a month ago
  • yes this worked thank you

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions