// ======================================================================== // OLD GEO-TARGETED SERVICES (With full location path) // Format: /service-name/city-state-india // ======================================================================== $old_geo_services = [ 'app-development' => [ 'priority' => '0.85', 'changefreq' => 'weekly', ], // ... other services ]; // In the sitemap generation loop for OLD URLs: foreach ($old_geo_services as $service => $config) { foreach ($global_locations as $slug => $location) { // OLD URL Pattern: /service-name/city-state-india $url = $base_url . '/' . $service . '/' . $slug; echo " \n"; echo " " . htmlspecialchars($url) . "\n"; echo " " . $config['priority'] . "\n"; echo " " . $config['changefreq'] . "\n"; echo " \n"; $total_old_geo_urls++; } }