Website improvements: fix service pages, add web-scraping service, trust badges, contact redirect

- 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
This commit is contained in:
root
2026-02-03 19:34:30 +00:00
parent 9cea601fb3
commit e8f01ecfbd
5 changed files with 968 additions and 11 deletions

5
contact.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
// Redirect /contact to /quote
header('HTTP/1.1 301 Moved Permanently');
header('Location: /quote');
exit;