This page is using a Netlify Edge Function (netlify/edge-functions/rewrite.js) to rewrite the URL based on visitor geography.
netlify/edge-functions/rewrite.js
const rewrite = async (request, context) => { const path = context.geo?.country?.code === 'AU' ? '/edge/australia' : '/edge/not-australia'; return new URL(path, request.url);};export const config = { path: '/edge'};export default rewrite;
See more examples