URL shortening is just one use case for generating redirects. I wrote a similar module for Hakyll ('Hakyll.Web.Redirect' <a href="https://hackage.haskell.org/package/hakyll-4.13.4.0/docs/Hakyll-Web-Redirect.html" rel="nofollow">https://hackage.haskell.org/package/hakyll-4.13.4.0/docs/Hak...</a>) but my intent was to allow renaming pages without breaking links and fixing the (truly innumerable) number of user errors in linking/writing URLs.<p>Because every original URL must be a valid file name, it does limit you compared to the full rewrite capabilities of Apache or Nginx, but that's the price you pay for a fully-static site. (I thought vaguely about writing some JS you could put in a 404.html to snoop the intended URL and do a lookup in a table to redirect to, but never got around to figuring out the details.)
I like the simpleness of the idea here, but don't like HTML-redirects (v/s 302s).. Wondering if you could just do this via Netlify redirects?<p>I've found using txtd.io as a URL-shortener a much simpler approach.<p>Or lightsaber, which does the exact same thing, but with Ruby (and allows some wildcards): <a href="https://github.com/captn3m0/lightsaber" rel="nofollow">https://github.com/captn3m0/lightsaber</a>
We went the direction of DNS based redirects using a set of TXT records to get portability and delegation of subpaths with txtdirect.org (FOSS based on Caddy)
Currently working on a new iteration and feedback is always appreciated.
Cool. I made one similar <a href="https://github.com/djyde/genlink" rel="nofollow">https://github.com/djyde/genlink</a>