Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.
/ domain-redirect Public archive

Easily redirect one entire domain to another with a serverless Cloudflare Worker.

License

Notifications You must be signed in to change notification settings

Erisa/domain-redirect

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Deprection notice

This project has been deprecated and archived.

I recommend you use Cloudflare's native Bulk Redirects or Dynamic Redirects features to redirect domains, rather than Page Rules.

You may use or fork this project if you desire, but it is not supported by me and will not recieve any updates.

The original README is below.

Domain Redirecting with Cloudflare Workers

Easily redirect one entire domain to another with a serverless Cloudflare Worker.

All paths and other data are kept intact. The redirect served is 302 Found (temporary redirect) to prevent cache headache if you ever change your mind.

The aim is to replace lots of Page Rules like this:

And instead use a simple map in domainMaps.json:

{
    "erisa.moe": "erisa.uk",
    "erisa.wales": "erisa.uk",
    "erisa.cymru": "erisa.uk",
    "link.erisa.moe": "erisa.link",
    "cloud.erisa.moe": "erisa.cloud"
}

Note: Cloudflare Workers is a billed product with a free tier available. Page Rules are preferred if cost savings are your priority. This Worker is used to keep domain mapping centralised and to free up Page Rules for other purposes. This is not always what you want.

Code is provided for reference and curiosity purposes, project is only intended to be used personally by the author.
But if you like it, you can use it!

Usage

Required:

  • Cloudflare DNS
  • Wrangler (npm i -g wrangler or cargo install wrangler)

Deploy:

  1. Clone the repository
  2. Edit domainMaps.json with source/target pairs of domains to redirect.
  3. wrangler publish

After deploying the worker, ensure that the source domain has a valid DNS record (If not, create an AAAA pointing to 100::) and then head to the Workers tab. Configure example.domain.com/* to use your worker:

Domains that are mapped to the Worker but not listed in domainMaps.json will return a 404 error:

That's all! It's quite simple.

About

Easily redirect one entire domain to another with a serverless Cloudflare Worker.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project