- Fix .htaccess to allow individual service pages instead of redirecting all to project-types - Add /services/web-scraping page with full content, schema markup, and SEO optimization - Add /contact redirect to /quote (301) - Update project-types.php title to remove C# jargon - Add trust badges section to footer (GDPR, ICO, Cyber Essentials, UK Based) - Add Web Scraping to footer services list
6 lines
113 B
PHP
6 lines
113 B
PHP
<?php
|
|
// Redirect /contact to /quote
|
|
header('HTTP/1.1 301 Moved Permanently');
|
|
header('Location: /quote');
|
|
exit;
|