Amplify-console: Support redirecting specific route of a specific subdomain

Created on 18 Jun 2020  路  3Comments  路  Source: aws-amplify/amplify-console

Is your feature request related to a problem? Please describe.
I'm trying to redirect a specific path of a specific subdomain to another url. The Amplify redirect rules only appear to allow redirecting every route of a subdomain or redirecting a specific route of every subdomain.

Say I have 2 subdomains redirect.example.com and noredirect.example.com. I would like

  1. redirect.example.com and redirect.example.com/ to redirect to somemarketingdomain.com
  2. redirect.example.com/all-other-paths, noredirect.example.com, noredirect.example.com/, and noredirect.example.com/all-other-paths to not redirect

I think this is a feature request since I've tried a bunch of things and haven't figured it out. Here are my attempts:

  1. Write redirect rule for the root path:
    json [ { "source": "https://redirect.example.com/", "target": "somemarketingdomain.com", "status": "302", "condition": null }, ]
    Doesn't appear to do anything and doesn't satisfy number 1 or 2 of my requirements above.
  2. Write redirect rule for every domain:
    json [ { "source": "/", "target": "somemarketingdomain.com", "status": "302", "condition": null }, ]
    Satisfies number 1 above but doesn't satisfy number 2 since noredirect.example.com also redirects.
  3. Write redirect rule for the whole subdomain:
    json [ { "source": "https://redirect.example.com", "target": "somemarketingdomain.com", "status": "302", "condition": null }, ]
    Satisfies number 1 above but doesn't satisfy number 2 since redirect.example.com/all-other-paths also redirects.

Describe the solution you'd like
I would like for my attempt number 1 to work where you can redirect specific routes for a specific domain

Additional context
I saw that https://github.com/aws-amplify/amplify-console/issues/233#issuecomment-558835732 suggested creating a new Amplify app for each subdomain, in which case my attempt number 2 would work. But this seems like overkill and a really hacky solution with duplicate config and more room for error.

It seems like requiring one Amplify app per subdomain defeats the purpose of all the domain management features and being able to quickly change which subdomain points at which branch.

Use cases I see for this:

  1. Test redirects on staging before production. I would like to test a redirect on stage.example.com before moving it into production at example.com
  2. Migrating to a new domain. If I wanted to migrate incrementally from domainone.com to domaintwo.com, I could only redirect some routes until we were ready to move them all without having to create a whole separate Amplify app.
  3. The ability to have a shortcode domain served from the same repo. Say I had example.com and ex.app and only wanted ex.app to serve /a/123456 routes, otherwise redirect to the main app.
question

Most helpful comment

Hi @OzzieOrca,

Thanks for the reporting this with a detailed explanation :) Currently we don't support the functionality to skip certain routes under a given subdomain during redirects. We have added this as a feature request to our current backlog.

All 3 comments

Hi @OzzieOrca,

Thanks for the reporting this with a detailed explanation :) Currently we don't support the functionality to skip certain routes under a given subdomain during redirects. We have added this as a feature request to our current backlog.

Thanks for prioritizing it. 馃槃 Guess I'll need to make multiple apps for now. 馃槮 I appreciate the answer and the clarification of the current redirect support.

I'm facing the same scenario we have a project landings that contains a ton of miniprojects for marketing, etc and we
want to use subdomains with a wildcard would be perfect. Just commenting to rise a little bit the priority :D thanks!

Was this page helpful?
0 / 5 - 0 ratings