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.
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;