如何在ASP中创建.xml站点地图

时间:2015-10-10 20:50:03

标签: xml web asp-classic sitemap

我有一个本地新闻网站,我希望Google,Yandex和其他人更快地编制索引。 SEO大师说,最简单的方法是向搜索引擎发送站点地图。我用过的脚本太旧了,用ASP编写。我有.asp扩展站点地图,但谷歌正在向其他人提供.xml。那么,我怎样才能将.asp扩展名转换为.xml? 感谢。

1 个答案:

答案 0 :(得分:0)

您可以使用sitemapindex并将站点地图添加到其中。像这样:

<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>https://www.yoursite.com/sitemap/ss.aspx</loc>
<lastmod>2020-05-03T17:07:27+00:00</lastmod>
</sitemap>
<sitemap>
<loc>https://www.yoursite.com/sitemap/videos.html</loc>
<lastmod>2020-05-03T17:07:27+00:00</lastmod>
</sitemap>
</sitemapindex>

将站点地图索引引入搜索引擎