You're not in Australia!

This page is using a Netlify Edge Function (netlify/edge-functions/rewrite.js) to rewrite the URL based on visitor geography.

export default async (request, context) => {
    const path = context.geo?.country?.code === 'AU' ? '/edge/australia' : '/edge/not-australia';
    return Response.redirect(new URL(path, request.url));
};

export const config = {
    path: '/edge'
};

See more examples