Dear Customer,
Cloudflare Page Rules do not support user agent-based redirects. Use a Cloudflare Worker to achieve this for MSIE 8.0 users.
if (request.headers.get('User-Agent').includes('MSIE 8.0')) return Response.redirect('/alternative');
via the Cloudflare Dashboard on your
site’s route.
Test the configuration and report any issues.
Best regards,
Omir
Your Cloudflare Support Team
Confirmed Page Rules limitation. Proposed Worker solution for UA redirection.
Reviewed redirect options. Source: Cloudflare UA Redirects.
//test