To set up a redirect from non-www to www on Cloudflare, you can use Page Rules or Cloudflare Workers. Here’s how to do it using both methods:
Method 1: Using Cloudflare Page Rules
- Log in to your Cloudflare dashboard
- Select your domain
- Navigate to “Rules” > “Page Rules”
- Click “Create Page Rule”
- In the URL pattern field, enter:
example.com/*
(replace example.com with your domain) - Add a setting: “Forwarding URL”
- Choose “301 - Permanent Redirect”
- In the destination URL field, enter:
https://www.example.com/$1
- Click “Save and Deploy”
Method 2: Using Cloudflare Workers
If you need more control or have used up your Page Rules quota, you can use Cloudflare Workers:
- Go to your Cloudflare dashboard
- Select your domain
- Navigate to “Workers & Pages”
- Click “Create a Worker”
- Replace the default code with this:
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
async function handleRequest(request) {
const url = new URL(request.url)
// Check if the hostname doesn't start with 'www.'
if (!url.hostname.startsWith('www.')) {
// Create the new URL with 'www.' prefix
url.hostname = 'www.' + url.hostname
// Return a 301 redirect to the new URL
return Response.redirect(url.toString(), 301)
}
// If URL already has 'www.', fetch the original request
return fetch(request)
}
- Click “Save and Deploy”
- Go back to your domain’s dashboard
- Navigate to “Workers Routes”
- Create a route:
example.com/*
(replace with your domain) - Assign it to your newly created worker
Both methods will redirect users from http://example.com/page
to https://www.example.com/page
while preserving the path and query parameters.
The Page Rules method is simpler but you have a limited number of Page Rules depending on your plan. The Workers method gives you more flexibility and control if needed.