Fix lỗi sitemap rank math seo this page contains the following errors
Sau khi mình update wordpress lên bản mới nhất thì sitemap rank math seo bị lỗi và không hiện lên sơ đồ trong search.google.com. Chắc rất nhiều bạn bị lỗi này, hôm nay webhoidap.edu.vn sẽ hướng dẫn bạn fix lỗi này đơn giản trong vòng nốt nhạc.
Để khắc phục tình trạng này. Trong folder public_html (thư mục gốc của website) các bạn tạo một file với tên bất kỳ. Ví dụ là suasitemap.php là thêm đoạn code sau:
<?php
function dandev_wp_whitespace_fix($input) {
$allowed = false;
$found = false;
foreach (headers_list() as $header) {
if (preg_match("/^content-type:\\s+(text\\/|application\\/((xhtml|atom|rss)\\+xml|xml))/i", $header)) {
$allowed = true;
}
if (preg_match("/^content-type:\\s+/i", $header)) {
$found = true;
}
}
if ($allowed || !$found) {
return preg_replace("/\\A\\s*/m", "", $input);
} else {
return $input;
}
}
ob_start("dandev_wp_whitespace_fix");
Tiếp theo trong file index.php bạn include file vừa tạo ở trên là được
<?php
include('suasitemap.php');
Với chỉ vài thao tác đơn giản, đã có thể fix được lỗi sitemap điên rồ này, webhoidap.edu.vn luôn chia sẻ những kiến thức cơ bản về SEO. Nếu có những thắc mắc nào hoặc bạn nào chưa fix được hãy bình luận bên dưới mình hỗ trợ nha.