I have the following two domains:
- myVeryLongSiteDomain.com
- mVeryShortURL.co
I need the following short URLs:
- mVeryShortURL.com/123456789
- mVeryShortURL.com/a-DSa131_
To redirect to the long site domain like so:
- myVeryLongSiteDomain.com/feedback/123456789
- myVeryLongSiteDomain.com/feedback/a-DSa131_
Note, how the /feedback/ url path is added
How can I make this work? Is it possible with just DNS? Do I need to host a app just for the ShortURL domain that does this redirection? FYI, my longsitedomain is a react app hosted on heroku.
What is the cleanest, right way, to make this happen?