├── README.md └── _redirects /README.md: -------------------------------------------------------------------------------- 1 | # Netlify URL Shortener 2 | Simple Private URL Shortener using [Netlify](https://netlify.com) 3 | 4 | [](https://app.netlify.com/start/deploy?repository=https://github.com/gijo-varghese/netlify-url-shortener) 5 | 6 | Full tutorial: [How to Create Your Own Private URL Shortener for Free](https://coffeencoding.com/how-to-create-your-own-private-url-shortener-for-free) 7 | 8 | Edit the `_redirects` file to add/remove URLs. Changes will be deployed in [Netlify](https://netlify.com) 9 | -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- 1 | / https://coffeencoding.com 2 | /short https://coffeencoding.com/how-to-create-your-own-private-url-shortener-for-free 3 | /cnc https://coffeencoding.com 4 | /mfy https://mfy.im 5 | --------------------------------------------------------------------------------