이 문서의 예에서는 Imperial CMS 웹사이트용 사이트맵을 만드는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
사용자 지정 페이지, 파일 이름 및 저장 디렉터리 추가: ../../sitemap/sitemap.xml
코드는 다음과 같습니다.
<?='<?xml version="1.0" encoding="UTF-8"?>'?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>https://www.jb51.net[!--news.url--]</loc> <lastmod><?=date("Y-m-d");?></lastmod> <changefreq>daily</changefreq> <priority>1.000</priority> </url> [e:loop={'select classid,classname,classpath,wburl from [!db.pre!]enewsclass where bclassid=0 and showclass=0 and (classid<>52 and classid<>24) order by myorder',0,24,0}] <?php if(emptyempty($bqr[wburl])) { $sccurl= $public_r[newsurl].$bqr[classpath]; } else { $sccurl= $bqr[wburl]; } ?> <url> <loc>https://www.jb51.net<?=$sccurl?>/</loc> <priority>0.6000</priority> </url> [/e:loop] [listshowclass]'0',25,1,0[/listshowclass] 模板在后面 [e:loop={"select * from [!db.pre!]ecms_news order by newstime DESC",0,24,0}] <url> <loc>https://www.jb51.net<?=$bqsr[titleurl]?></loc> <lastmod><?=date('Y-m-d',$bqr[newstime])?></lastmod> <changefreq>daily</changefreq> <priority>0.8000</priority> </url> [/e:loop] [e:loop={"select * from [!db.pre!]ecms_shop order by newstime DESC",0,24,0}] <url> <loc>https://www.jb51.net<?=$bqsr[titleurl]?></loc> <lastmod><?=date('Y-m-d',$bqr[newstime])?></lastmod> <changefreq>daily</changefreq> <priority>0.8000</priority> </url> [/e:loop] [e:loop={"select * from [!db.pre!]ecms_movie order by newstime DESC",0,24,0}] <url> <loc>https://www.jb51.net<?=$bqsr[titleurl]?></loc> <lastmod><?=date('Y-m-d',$bqr[newstime])?></lastmod> <changefreq>daily</changefreq> <priority>0.8000</priority> </url> [/e:loop] [e:loop={"select * from [!db.pre!]ecms_baojia order by newstime DESC",0,24,0}] <url> <loc>https://www.jb51.net<?=$bqsr[titleurl]?></loc> <lastmod><?=date('Y-m-d',$bqr[newstime])?></lastmod> <changefreq>daily</changefreq> <priority>0.8000</priority> </url> [/e:loop] [e:loop={"select * from [!db.pre!]ecms_download order by newstime DESC",0,24,0}] <url> <loc>https://www.jb51.net<?=$bqsr[titleurl]?></loc> <lastmod><?=date('Y-m-d',$bqr[newstime])?></lastmod> <changefreq>daily</changefreq> <priority>0.8000</priority> </url> [/e:loop] </urlset>
"을 학습하는 것이 좋습니다. Empire cms tutorial"
loop 열 목록의 레이블 템플릿:
코드는 다음과 같습니다.
[listshowclass]'0',25,1,0[/listshowclass] [!--empirenews.listtemp--] <!--list.var1--> [!--empirenews.listtemp--] <url> <loc>https://www.jb51.net[!--classurl--]</loc> <priority>0.6000</priority> </url>
이 기사가 모든 사람의 Imperial CMS 웹 사이트 구축에 도움이 되기를 바랍니다.
위 내용은 Imperial CMS 홈페이지 사이트맵 생성방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!