我创建了一个网站,我想创建一个站点地图供 Google 抓取它。
该网站使用以下 url 格式从基于 course_id 的课程数据库描述中检索:
http://formationmtl.com/coursedescription.php?course_id=1
http://formationmtl.com/coursedescription.php?course_id=2
etc..
现在我不能保证某个 course_id 存在,因为它可能会被删除。
我在网上使用了第 3 方产品来生成我的站点地图,它给了我这个:
<?xml version="1.0" encoding="UTF-8" ?>
- <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
- <!-- created with Free Online Sitemap Generator www.xml-sitemaps.com
-->
- <url>
<loc>http://formationmtl.com/</loc>
</url>
- <url>
<loc>http://formationmtl.com/index.php</loc>
etc...
如何修改它以合并我的动态页面?
这可能是一个愚蠢的问题,但我对此很陌生。
谢谢,