Free & privacy-aware domain forwarder https://hosterra.eu/projects/public/forwarder.php
  • JavaScript 100%
Find a file
2021-09-20 20:11:57 +07:00
.vscode Initial commit 2021-08-22 07:29:09 +07:00
public Initial commit 2021-08-22 07:29:09 +07:00
src Add args for production 2021-09-20 20:11:57 +07:00
.gitattributes Initial commit 2021-08-22 07:29:09 +07:00
.gitignore Initial commit 2021-08-22 07:29:09 +07:00
app.js Add args for production 2021-09-20 20:11:57 +07:00
index.js Extract certnode & stuffs out of app.js 2021-08-22 09:10:25 +07:00
LICENSE Initial commit 2021-08-22 07:29:09 +07:00
package-lock.json Try 2021-08-22 11:41:39 +07:00
package.json Try 2021-08-22 11:41:39 +07:00
README.md Update README.md 2021-08-23 22:13:36 +07:00

Forward Domain (Defunct, see #1)

This services forwards domains using 301 HTTP redirects.

Possible scenarios:

  • Forward non-www to www URLs or inversely
  • Forward old URLs to new URLs

Why using this service?

  • No coding required
  • No hosting required
  • No registration required
  • Completely anonymous
  • Completely free

How it is possible?

  • Point your domain to us using CNAME or A/AAAA records
  • Tell us where to forward using TXT records
  • We handle HTTPS certificates for you

Get Started

To forward from www.old.com to old.com, add these records to your DNS:

www.old.com   IN    CNAME   r.forwarddomain.net
www.old.com   IN    TXT     forward-domain=https://old.com/*
www.old.com   IN    TXT     forward-domain-cert-maintainer=<your email address>

IMPORTANT: replace <your email address> with your email address!

Because CNAME can't be used in apex domains, you can use A/AAAA records.
To forward from old.com to new.net, add these records to your DNS:

old.com   IN    A       206.189.61.89
old.com   IN    AAAA    2a03:b0c0:3:d0::13a8:c001
old.com   IN    TXT     forward-domain=https://new.net/*
old.com   IN    TXT     forward-domain-cert-maintainer=<your email address>

BETA service notice: IP addresses can change anytime (with notice).

FAQ

Why email address?

This is required in order to sign HTTPS certificates.
You can omit it but HTTPS redirects will not work.

Is it really free?

Forwarding domains should be easy to setup.
I use this internally for domcloud.io.

How can I check redirects will work?

This service uses Google's Public DNS Resolver.
Once first accessed, values will be cached for a day.
For right now there's no way to flush the cache sorry.

Why it loads slowly?

It only slow at first time because it has to sign HTTPS certificates.

How can I support this service?

Star our repo and spread the word, please :)

Usual Disclaimer

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.