Hướng dẫn chi tiết cách tạo Sitemap cho website 2025

Rate this post

Sitemap là một tệp chứa danh sách các URL trên website của bạn, giúp công cụ tìm kiếm hiểu cấu trúc và nội dung trang web dễ dàng hơn. Dưới đây là hướng dẫn chi tiết để tạo sitemap hiệu quả.

1. Các loại Sitemap

  • XML Sitemap: Định dạng phổ biến nhất, dành cho công cụ tìm kiếm
  • HTML Sitemap: Dành cho người dùng, giúp họ điều hướng trang web
  • Video Sitemap: Chứa thông tin về nội dung video
  • Image Sitemap: Chứa thông tin về hình ảnh
  • News Sitemap: Dành cho các trang tin tức

2. Cấu trúc của XML Sitemap

Một XML sitemap cơ bản có dạng:

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://www.example.com/</loc>
    <lastmod>2023-06-01</lastmod>
    <changefreq>monthly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://www.example.com/about</loc>
    <lastmod>2023-05-15</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>

Trong đó:

  • <loc>: URL của trang (bắt buộc)
  • <lastmod>: Ngày cập nhật lần cuối (tùy chọn)
  • <changefreq>: Tần suất thay đổi (tùy chọn)
  • <priority>: Độ ưu tiên (tùy chọn, từ 0.0 đến 1.0)

3. Các cách tạo Sitemap

A. Sử dụng công cụ online

  1. XML-Sitemaps.com:
    • Truy cập https://www.xml-sitemaps.com/
    • Nhập URL trang web của bạn
    • Chọn tùy chọn quét (miễn phí hoặc trả phí)
    • Tải xuống sitemap sau khi tạo
  2. Screaming Frog SEO Spider:
    • Tải và cài đặt phần mềm
    • Nhập URL trang web
    • Chọn “Crawl” để quét trang web
    • Đi đến “Sitemap” > “XML Sitemap” > “Export”

B. Tạo thủ công

Đối với trang web nhỏ, bạn có thể tạo sitemap thủ công bằng cách:

  1. Tạo một tệp XML mới
  2. Thêm khai báo XML và thẻ <urlset>
  3. Thêm mỗi URL của bạn trong thẻ <url>
  4. Lưu dưới dạng “sitemap.xml”

C. Sử dụng plugin (CMS)

WordPress:

  1. Yoast SEO:
    • Cài đặt và kích hoạt plugin Yoast SEO
    • Vào “SEO” > “General” > “Features”
    • Bật tính năng “XML Sitemaps”
    • Sitemap sẽ được tạo tại: yourwebsite.com/sitemap_index.xml
  2. Google XML Sitemaps:
    • Cài đặt và kích hoạt plugin
    • Vào “Settings” > “XML-Sitemap”
    • Tùy chỉnh các thiết lập
    • Lưu cài đặt

Joomla:

  • Sử dụng extension như “OSMap” hoặc “JSitemap”

Shopify:

  • Sitemap được tạo tự động tại: yourstore.com/sitemap.xml

Wix:

  • Sitemap được tạo tự động tại: yoursite.com/sitemap.xml

D. Sử dụng code (cho website tùy chỉnh)

PHP:

<?php
// Tạo XML header
header('Content-Type: application/xml; charset=utf-8');
echo '<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL;
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . PHP_EOL;

// Kết nối đến cơ sở dữ liệu để lấy URL
$db = new mysqli('localhost', 'username', 'password', 'database');
$query = "SELECT url, updated_at FROM pages WHERE status = 'published'";
$result = $db->query($query);

// Tạo các mục URL
while ($row = $result->fetch_assoc()) {
  echo "\t<url>" . PHP_EOL;
  echo "\t\t<loc>" . htmlspecialchars($row['url']) . "</loc>" . PHP_EOL;
  echo "\t\t<lastmod>" . date('Y-m-d', strtotime($row['updated_at'])) . "</lastmod>" . PHP_EOL;
  echo "\t\t<changefreq>monthly</changefreq>" . PHP_EOL;
  echo "\t\t<priority>0.8</priority>" . PHP_EOL;
  echo "\t</url>" . PHP_EOL;
}

// Đóng XML
echo '</urlset>';
?>

Python:

from xml.dom.minidom import Document
import datetime

# Tạo document XML
doc = Document()
urlset = doc.createElement('urlset')
urlset.setAttribute('xmlns', 'http://www.sitemaps.org/schemas/sitemap/0.9')
doc.appendChild(urlset)

# Danh sách URL của bạn
urls = [
    {'loc': 'https://example.com/', 'lastmod': '2023-06-01', 'priority': '1.0'},
    {'loc': 'https://example.com/about', 'lastmod': '2023-05-20', 'priority': '0.8'},
]

# Thêm mỗi URL vào sitemap
for url_data in urls:
    url_element = doc.createElement('url')
    
    loc = doc.createElement('loc')
    loc_text = doc.createTextNode(url_data['loc'])
    loc.appendChild(loc_text)
    url_element.appendChild(loc)
    
    lastmod = doc.createElement('lastmod')
    lastmod_text = doc.createTextNode(url_data['lastmod'])
    lastmod.appendChild(lastmod_text)
    url_element.appendChild(lastmod)
    
    priority = doc.createElement('priority')
    priority_text = doc.createTextNode(url_data['priority'])
    priority.appendChild(priority_text)
    url_element.appendChild(priority)
    
    urlset.appendChild(url_element)

# Lưu sitemap
with open('sitemap.xml', 'w', encoding='utf-8') as f:
    f.write(doc.toprettyxml(indent='  '))

4. Sitemap cho trang web lớn

Nếu trang web của bạn có nhiều hơn 50,000 URL (giới hạn cho một sitemap), bạn cần tạo nhiều tệp sitemap và một sitemap index:

<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://www.example.com/sitemap1.xml</loc>
    <lastmod>2023-06-01</lastmod>
  </sitemap>
  <sitemap>
    <loc>https://www.example.com/sitemap2.xml</loc>
    <lastmod>2023-06-01</lastmod>
  </sitemap>
</sitemapindex>

5. Gửi Sitemap đến công cụ tìm kiếm

Google Search Console:

  1. Đăng nhập vào Google Search Console
  2. Chọn trang web của bạn
  3. Đi đến “Sitemaps” trong menu bên trái
  4. Nhập URL của sitemap (ví dụ: sitemap.xml)
  5. Nhấp “Submit”

Bing Webmaster Tools:

  1. Đăng nhập vào Bing Webmaster Tools
  2. Chọn trang web của bạn
  3. Đi đến “Sitemaps”
  4. Nhập URL của sitemap
  5. Nhấp “Submit”

6. Thêm sitemap vào robots.txt

Thêm dòng sau vào file robots.txt của bạn:

Sitemap: https://www.example.com/sitemap.xml

7. Những lưu ý quan trọng

  1. Cập nhật thường xuyên: Cập nhật sitemap khi nội dung thay đổi
  2. Chỉ bao gồm URL chất lượng: Loại bỏ các trang trùng lặp, có nội dung mỏng
  3. Kiểm tra lỗi: Sử dụng công cụ như Google Search Console để kiểm tra lỗi
  4. Không vượt quá 50MB cho mỗi file sitemap
  5. Không quá 50,000 URL trong một sitemap
  6. Sử dụng URL tuyệt đối, bao gồm cả https:// hoặc http://
  7. Mã hóa đúng: Sử dụng UTF-8 cho sitemap

Bằng cách tuân thủ các hướng dẫn này, bạn sẽ tạo được sitemap hiệu quả giúp cải thiện khả năng index của trang web và tăng hiệu quả SEO.


Gọi điện ngay