我对搜索引擎优化还很陌生。但是,我听说站点地图可以极大地改善 SEO。我知道站点地图文件必须是 xml 格式。但是,我的网站内容非常动态。话虽如此,我需要查询数据库以了解内容随着时间的推移发生了怎样的变化。我的代码如下:
<?php
require_once("functions.php");
connect();
// Query the DB to get the past season MLB teams
$query = mysql_query("SELECT * FROM past_season_team_articles") or die(mysql_error());
$count = mysql_num_rows($query);
$i = 0;
while($row = mysql_fetch_assoc($query))
{
$team[$i] = $row['team'];
$year[$i] = $row['year'];
$i++;
}
?>
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php
// Loop thru the array and echo out the MLB teams
for($i=0;$i<$count;$i++)
{
?>
<url>
<loc>http://www.sportannica.com/teams.php?team=<?php echo $team[$i]; ?>&year=<? php echo $year[$i]; ?></loc>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
<?php
}
?>
</urlset>