sitemap ver 1.23 by mahler83 2009-11-16
// please give feedbacks to bomool.net
include_once("./_common.php");
$charset = $g5['charset'];
$url = "http://127.0.0.1/gnu54"; // G5 루트 경로
header("Content-type: text/xml;charset=\"UTF-8\"");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
echo "\n";
?>
https://www.sitemaps.org/schemas/sitemap/0.9/">
\n";
echo "$url/bbs/board.php?bo_table=$bo\n";
$temp = sql_fetch("select wr_datetime from `{$g5['write_prefix']}{$bo}` order by wr_datetime DESC");
$lastmod = str_replace(" ", "T", substr($temp['wr_datetime'], 0, 30))."+00:00";
// if
if(!$lastmod || strlen($lastmod) < 25 || strcmp($lastmod, "+00:00")) $lastmod = "2014-10-10T00:00:00+00:00";
echo "$lastmod\n";
echo "daily\n";
echo "0.9\n";
echo "\n";
$query = sql_query("select wr_id, wr_datetime from `{$g5['write_prefix']}{$bo}` where wr_is_comment='0' AND wr_option NOT LIKE '%secret%'");
while($row = sql_fetch_array($query)) {
// list of each article
echo "";
echo "$url/bbs/board.php?bo_table=$bo&wr_id={$row['wr_id']}";
$temp = sql_fetch("select wr_datetime from `{$g5['write_prefix']}{$bo}` where wr_parent='{$row['wr_id']}' order by wr_id DESC");
$lastmod = str_replace(" ", "T", substr($temp['wr_datetime'], 0, 30))."+00:00";
if(!$lastmod) {
$temp = sql_fetch("select wr_datetime from `{$g5['write_prefix']}$bo` where wr_id='{$row['wr_id']}'");
$lastmod = str_replace(" ", "T", substr($temp['wr_datetime'], 0, 30))."+00:00";
}
if(!$lastmod) $lastmod = $g5['time_ymd'];
echo "$lastmod";
echo "weekly";
echo "0.5";
echo "\n";
}
$i++;
}
?>
--------------------------------------------------------------------------
위가 사이트맵 소스이구요.
짧은 주소 하고 싶습니다. ㅠ_ㅠ
--------------------------------------------------------------------------

위 이미지 추가 질문 드립니다.
사이트맵을 등록 시키면 위와 같이 네임스페이스가 잘못되었습니다는 무슨 말인가요??
어떻게 수정해야할까요??