gpt4 book ai didi

php - 站点地图文件可以是 php 吗?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:30:15 25 4
gpt4 key购买 nike

我对搜索引擎优化还很陌生。但是,我听说站点地图可以极大地改善 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]; ?>&amp;year=<? php echo $year[$i]; ?></loc>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
<?php
}
?>
</urlset>

最佳答案

我使用 .htaccess(在 Apache 下和 IIS 下都使用 helicon)将对 sitemap.xml 的请求映射到 sitemap.php,后者返回一个“实时”站点地图。只是快速查看了您的代码,但看起来不错,您只需要映射重写。

关于php - 站点地图文件可以是 php 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11271328/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com