SEO fixes: orphan pages, schema cleanup, clean URLs, llms-full.txt
- Add 32 missing articles to blog page 2 with working pagination - Strip .php extensions from all blog article links (blog/index.php, article-footer.php) - Remove unverified aggregateRating from Organization schema - Remove empty telephone fields from Organization schema - Fix broken tel: link in homepage contact section (+44 1692 689150) - Update footer Twitter link to x.com - Create llms-full.txt for AI crawler indexing
This commit is contained in:
@@ -106,8 +106,8 @@ $display_articles = array_slice($filtered_articles, 0, 3);
|
||||
<p>UK Data Services delivers GDPR-compliant web scraping, data extraction, and analytics — tailored to your industry. 99.8% accuracy, fast turnaround, no long-term contracts.</p>
|
||||
</div>
|
||||
<div class="cta-actions">
|
||||
<a href="/quote.php" class="cta-btn cta-btn-primary">Get a Free Quote</a>
|
||||
<a href="/services/web-scraping.php" class="cta-btn cta-btn-outline">See Our Services</a>
|
||||
<a href="/quote" class="cta-btn cta-btn-primary">Get a Free Quote</a>
|
||||
<a href="/services/web-scraping" class="cta-btn cta-btn-outline">See Our Services</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@@ -118,13 +118,13 @@ $display_articles = array_slice($filtered_articles, 0, 3);
|
||||
<?php foreach ($display_articles as $article): ?>
|
||||
<article class="related-card">
|
||||
<span class="category"><?php echo htmlspecialchars($article['category']); ?></span>
|
||||
<h3><a href="/blog/articles/<?php echo htmlspecialchars($article['slug']); ?>.php"><?php echo htmlspecialchars($article['title']); ?></a></h3>
|
||||
<h3><a href="/blog/articles/<?php echo htmlspecialchars($article['slug']); ?>"><?php echo htmlspecialchars($article['title']); ?></a></h3>
|
||||
<span class="read-time"><?php echo htmlspecialchars($article['read_time']); ?></span>
|
||||
</article>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
<div class="category-links">
|
||||
<a href="/blog/categories/<?php echo strtolower(str_replace(' ', '-', $current_category)); ?>.php" class="btn">More <?php echo htmlspecialchars($current_category); ?> Articles</a>
|
||||
<a href="/blog/categories/<?php echo strtolower(str_replace(' ', '-', $current_category)); ?>" class="btn">More <?php echo htmlspecialchars($current_category); ?> Articles</a>
|
||||
<a href="/blog/" class="btn btn-secondary">All Blog Articles</a>
|
||||
</div>
|
||||
</section>
|
||||
Reference in New Issue
Block a user