I'm using a drupal module that has an api to create short url's. It is configurable to use any domain for the short url's. When testing, I used my site's primary domain in creating short url's, and the links that are created work perfectly.
However, when I attempt using a separate short domain, the links are not being routed properly to the primary domain. I really hoped it would be as easy as just setting up a redirect from the short.url --> primarydomain.com, but that gives a 404 when a short.url is clicked.
If I don't use a redirect (in effect, doing nothing to short.url), I get a 500 error when clicking short.url/8d3j
It's clear to me that the code (drupal module) works perfectly, it's just that the maintainer does not believe in documenting code and there is absolutely no clue as to how to configure the separate domain. Anyone been in a similar situation? Does someone know of a couple lines of code to add to .htaccess that will magically solve my problems?