Security hardening + new tools deployment

- Hide Apache version (ServerTokens Prod)
- Add Permissions-Policy header
- Remove deprecated X-XSS-Protection
- Consolidate security headers to .htaccess only (remove duplicates from PHP)
- Deploy free tools: robots-analyzer, data-converter
- Deploy tools announcement blog post
- Update sitemap with new tools and blog post
This commit is contained in:
root
2026-02-05 04:11:15 +00:00
parent 3a0d8034c7
commit b6e39fe0c2
89 changed files with 4866 additions and 1932 deletions

View File

@@ -1,10 +1,6 @@
<?php
// Enhanced security headers
header('X-Content-Type-Options: nosniff');
header('X-Frame-Options: DENY');
header('X-XSS-Protection: 1; mode=block');
header('Strict-Transport-Security: max-age=31536000; includeSubDomains');
header('Referrer-Policy: strict-origin-when-cross-origin');
// Article-specific SEO variables
$page_title = "Data Automation Strategies for UK Businesses: Complete Implementation Guide | UK Data Services";
@@ -59,6 +55,7 @@ $og_image = "https://ukdataservices.co.uk/assets/images/icon-automation.svg";
<!-- Stylesheets -->
<link rel="stylesheet" href="../../assets/css/main.css">
<link rel="stylesheet" href="../../assets/css/cro-enhancements.css">
<!-- Schema.org JSON-LD -->
<script type="application/ld+json">
@@ -101,7 +98,7 @@ $og_image = "https://ukdataservices.co.uk/assets/images/icon-automation.svg";
<div class="nav-container">
<div class="nav-logo">
<a href="/">
<img src="../../assets/images/ukds-main-logo.png" alt="UK Data Services" class="logo" loading="eager">
<img loading="lazy" src="../../assets/images/ukds-main-logo.png" alt="UK Data Services" class="logo" loading="eager">
</a>
</div>
<div class="nav-menu" id="nav-menu">
@@ -269,11 +266,11 @@ $og_image = "https://ukdataservices.co.uk/assets/images/icon-automation.svg";
<p>Our automation specialists offer free consultations to help you identify high-impact automation opportunities.</p>
<div class="contact-info">
<div class="contact-item">
<img src="/assets/images/icon-phone.svg" alt="Phone" width="16" height="16">
<img loading="lazy" src="/assets/images/icon-phone.svg" alt="Phone" width="16" height="16">
<span>+44 20 1234 5678</span>
</div>
<div class="contact-item">
<img src="/assets/images/icon-email.svg" alt="Email" width="16" height="16">
<img loading="lazy" src="/assets/images/icon-email.svg" alt="Email" width="16" height="16">
<span>automation@ukdataservices.co.uk</span>
</div>
</div>
@@ -296,11 +293,11 @@ $og_image = "https://ukdataservices.co.uk/assets/images/icon-automation.svg";
<h3>Share This Article</h3>
<div class="share-buttons">
<a href="https://twitter.com/intent/tweet?text=Data%20Automation%20Strategies%20for%20UK%20Businesses&url=https://ukdataservices.co.uk/blog/articles/data-automation-strategies-uk-businesses" class="share-btn twitter" target="_blank">
<img src="/assets/images/icon-twitter.svg" alt="Twitter" width="16" height="16">
<img loading="lazy" src="/assets/images/icon-twitter.svg" alt="Twitter" width="16" height="16">
Share on Twitter
</a>
<a href="https://www.linkedin.com/sharing/share-offsite/?url=https://ukdataservices.co.uk/blog/articles/data-automation-strategies-uk-businesses" class="share-btn linkedin" target="_blank">
<img src="/assets/images/icon-linkedin.svg" alt="LinkedIn" width="16" height="16">
<img loading="lazy" src="/assets/images/icon-linkedin.svg" alt="LinkedIn" width="16" height="16">
Share on LinkedIn
</a>
</div>
@@ -315,7 +312,7 @@ $og_image = "https://ukdataservices.co.uk/assets/images/icon-automation.svg";
<div class="container">
<div class="footer-content">
<div class="footer-section">
<img src="/assets/images/logo-white.svg" alt="UK Data Services" class="footer-logo" width="160" height="36">
<img loading="lazy" src="/assets/images/logo-white.svg" alt="UK Data Services" class="footer-logo" width="160" height="36">
<p>Professional data services for UK businesses. Specialising in web scraping, data analysis, and business intelligence solutions.</p>
</div>
@@ -343,15 +340,15 @@ $og_image = "https://ukdataservices.co.uk/assets/images/icon-automation.svg";
<h3>Contact</h3>
<ul>
<li>
<img src="/assets/images/icon-email.svg" alt="Email" width="16" height="16">
<img loading="lazy" src="/assets/images/icon-email.svg" alt="Email" width="16" height="16">
hello@ukdataservices.co.uk
</li>
<li>
<img src="/assets/images/icon-phone.svg" alt="Phone" width="16" height="16">
<img loading="lazy" src="/assets/images/icon-phone.svg" alt="Phone" width="16" height="16">
+44 20 1234 5678
</li>
<li>
<img src="/assets/images/icon-location.svg" alt="Location" width="16" height="16">
<img loading="lazy" src="/assets/images/icon-location.svg" alt="Location" width="16" height="16">
London, United Kingdom
</li>
</ul>
@@ -413,5 +410,6 @@ $og_image = "https://ukdataservices.co.uk/assets/images/icon-automation.svg";
});
});
</script>
<script src="../../assets/js/cro-enhancements.js"></script>
</body>
</html>