From 3b77a9bdbbd14236d2d3418c15d781e06161ba66 Mon Sep 17 00:00:00 2001 From: Alaguraj0361 Date: Thu, 11 Dec 2025 16:37:48 +0530 Subject: [PATCH] The pages that were not indexed have been redirected to the correct pages. --- next.config.js | 109 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) diff --git a/next.config.js b/next.config.js index ffe2af3..07faadd 100644 --- a/next.config.js +++ b/next.config.js @@ -11,6 +11,115 @@ const nextConfig = { // modern: true, // ✅ enable modern build (ES6+ for modern browsers) // polyfillsOptimization: true // ✅ remove unnecessary polyfills // }, + async redirects() { + return [ + // --- SERVICES --- + { + source: "/etobicoke-treatment-service/cardiac-rehabilitation-etobicoke/", + destination: "/etobicoke-treatment-service/cardiac-rehabilitation-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/compression-stockings-etobicoke/", + destination: "/etobicoke-treatment-service/compression-stockings-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/cranio-sacral-therapy-etobicoke/", + destination: "/etobicoke-treatment-service/cranio-sacral-therapy-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/cupping-therapy-etobicoke/", + destination: "/etobicoke-treatment-service/cupping-therapy-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/fascial-stretch-therapy-etobicoke/", + destination: "/etobicoke-treatment-service/fascial-stretch-therapy-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/gait-assessment-etobicoke/", + destination: "/etobicoke-treatment-service/gait-assessment-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/intramuscular-stimulation-ims-etobicoke/", + destination: "/etobicoke-treatment-service/intramuscular-stimulation-ims-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/kids-physiotherapy-etobicoke/", + destination: "/etobicoke-treatment-service/kids-physiotherapy-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/motor-vehicle-accident-rehabilitation-etobicoke/", + destination: "/etobicoke-treatment-service/motor-vehicle-accident-rehabilitation-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/neuro-fascial-therapy-etobicoke/", + destination: "/etobicoke-treatment-service/neuro-fascial-therapy-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/orthotics-etobicoke/", + destination: "/etobicoke-treatment-service/orthotics-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/pre-post-operative-management-etobicoke/", + destination: "/etobicoke-treatment-service/prepost-operative-management-clinic-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/psychotherapy-etobicoke/", + destination: "/etobicoke-treatment-service/psychotherapy-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/shiatsu-therapy-etobicoke/", + destination: "/etobicoke-treatment-service/shiatsu-therapy-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/shockwave-therapy-etobicoke/", + destination: "/etobicoke-treatment-service/shockwave-therapy-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/surgical-rehab-etobicoke/", + destination: "/etobicoke-treatment-service/surgical-rehab-in-etobicoke/", + permanent: true, + }, + { + source: "/etobicoke-treatment-service/deep-tissue-massage-etobicoke/", + destination: "/etobicoke-treatment-service/deep-tissue-massage-in-etobicoke/", + permanent: true, + }, + + { + source: "/ourapproach-physiotherapy-etobicoke/", + destination: "/our-approach-physiotherapy-etobicoke/", + permanent: true, + }, + + // --- TEAM PAGES --- + { + source: "/our-team-physiotherapy-etobicoke/chandra-babu/", + destination: "/our-team-physiotherapy-etobicoke/chandra-babu-in-etobicoke/", + permanent: true, + }, + { + source: "/our-team-physiotherapy-etobicoke/jo-anne/", + destination: "/our-team-physiotherapy-etobicoke/jo-anne-in-etobicoke/", + permanent: true, + }, + ]; + }, + async headers() { return [ {