給自己的discuz網(wǎng)站免插件使用定時(shí)任務(wù)自動(dòng)生成sitemap.xml文件
今日站長(zhǎng)在線站長(zhǎng)想給我的江華在線(www.ijianghua.com)這個(gè)網(wǎng)站想百度提交sitemap的時(shí)候,發(fā)現(xiàn)discuz論壇系統(tǒng),本身就不帶sitemap.xml文件,去
永久美國(guó)免備案虛擬主機(jī)1元1天,15元1月,100元1年,1000元永久
站長(zhǎng)在線旗下答案網(wǎng)站,全站所有題目,免費(fèi)查看答案和答案解析
今日站長(zhǎng)在線站長(zhǎng)想給我的江華在線(www.ijianghua.com)這個(gè)網(wǎng)站想百度提交sitemap的時(shí)候,發(fā)現(xiàn)discuz論壇系統(tǒng),本身就不帶sitemap.xml文件,去插件中心一看,基本上都是收費(fèi)的。想想還是算了,于是在網(wǎng)上搜索相關(guān)問(wèn)題,還解決了問(wèn)題,也就是本文要分享的《給自己的discuz網(wǎng)站免插件使用定時(shí)任務(wù)自動(dòng)生成sitemap.xml文件》詳細(xì)方法與步驟如下:
1、制作文件。制作計(jì)劃任務(wù)文件cron_sitemap.PHP,文件代碼如下:(自己可以復(fù)制粘貼)
<?php
/*
* $ cron_sitemap.php 2021.8.18 網(wǎng)站地圖 計(jì)劃任務(wù)版 www.ijianghua.com
*/
if(!defined('IN_DISCUZ')) {
exit('access Denied');
}
$filename='sitemap.xml';
//以下五項(xiàng)根據(jù)具體情況修改即可
$cfg_updateperi='60';//協(xié)議文件更新周期的上限,單位為分鐘
$web_root=$_G['siteurl'];//根網(wǎng)址
$CHARSET='utf-8';// or gbk //選擇編碼方式
/***********************************************************************************************/
//網(wǎng)站地圖sitemap.xml
$sitemap="<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
$sitemap.="<urlset\n";
$sitemap.="xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\"\n";
$sitemap.="xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n";
$sitemap.="xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9\n";
$sitemap.="http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\">\n";
$querys = DB::query("SELECT a.tid FROM ".DB::table('forum_thread')." a inner join ".DB::table('forum_forum')." b on a.fid=b.fid ORDER BY a.tid DESC LIMIT 0,10000");
while($threadfid = DB::fetch($querys))
{
$turl=$web_root.'thread-'.$threadfid['tid'].'-1-1.html';//注意靜態(tài)規(guī)則
$link = $turl;
$t=time();
$riqi=date("Y-m-d",$t);
$priority=rand(1,10)/10;
//date("D F d Y",$t);
$sitemap.="<url>\n";
$sitemap.="<loc>$link</loc>\n";
$sitemap.="<priority>$priority</priority>\n";
$sitemap.="<lastmod>$riqi</lastmod>\n";
$sitemap.="<changefreq>weekly</changefreq>\n";
$sitemap.="</url>\n";
}
$sitemap .= "</urlset>\n";
$fp = fopen(DISCUZ_ROOT.'/'.$filename,'w');
fwrite($fp,$sitemap);
fclose($fp);
?>
二、上傳文件。二進(jìn)制上傳代碼文件cron_sitemap.php,到網(wǎng)站的/source/include/cron目錄里面(此目錄全部是計(jì)劃任務(wù)文件)
三、添加計(jì)劃任務(wù)。
后臺(tái)--工具--計(jì)劃任務(wù)--新增,名字隨便我寫(xiě)sitemap,提交。然后編輯,任務(wù)腳本:cron_sitemap.php(如同)
參數(shù)設(shè)置解讀:每月,每周,每小時(shí)都是*代表不限,分鐘數(shù)1,代表 每小時(shí)的1分鐘開(kāi)始執(zhí)行,那樣的話每天執(zhí)行24次。
添加完成以后,可以先手動(dòng)執(zhí)行一下任務(wù),然后去打開(kāi)sitemap.xml是否正常,正常的話就OK了,然后去百度提交了。
江華在線的sitemap.xml地址是:https://www.ijianghua.com/sitemap.xml
本文地址:http://003188.cn/discuzsitemapxml.html
阿里云虛擬主機(jī)1G空間,120元一年
香港、美國(guó)虛擬主機(jī)100元一年,1000元永久
騰訊云雙十一0.4折起,2核8G5M三年僅700元,2核4G8M三年僅198元
猜你喜歡