寶塔控制面板用腳本每天自動生成WordPress網站地圖(Sitemap.Xml)的方法
[重要通告]如您遇疑難雜癥,本站支持知識付費業(yè)務,掃右邊二維碼加博主微信,可節(jié)省您寶貴時間哦!
用過Wordpress的朋友都知道,Wordpress沒有生成地圖的功能,不過我們可以改造,具體請看我站內文章寫過;?WordPress免插件實現(xiàn)sitemap站點地圖xml和html兩個版本還寫過?WordPress免插件生成完整sitemap(站點地圖)的php代碼這兩篇文章,按照那篇都可以來操作,因為之前一直是Windows Server 2012 系統(tǒng),沒有安裝寶塔,一直沒有直接自動生成過,都是手動滴,最近服務器換成了Linux系統(tǒng),裝了寶塔,就可以直接用腳本來實現(xiàn)了,具體請看下面的代碼;
wget http://madamerex.com/sitemap.php -O/laoliang.net/sitemap.xml --no-check-certificate >/dev/null 2>&1
PS:注意路徑還有網址哦;
如果在Linux系統(tǒng)中,執(zhí)行腳本也可以,那就需要另外的參數(shù)
Linux 定時任務+wget 定時生成 sitemap.xml
0 1 * * * wget -O /(此處為目錄)laoliang.net/sitemap.xml --no-check-certificate http://madamerex.com/sitemap.php >/dev/null 2>&1 0 1 * * * wget http://madamerex.com/sitemap.php -O /此處為目錄/laoliang.net/sitemap.xml --no-check-certificate >/dev/null 2>&1 crontab -e 0 5 * * * wget -O /xxx/xxx/web/sitemap.xml http://madamerex.com/sitemap.php (注:/xxx/xxx/web/為網站根目錄)
PS:注意上面的01 05 都是時間01 是凌晨1點,05就是早上五點哦,可以根據(jù)自己的方式設置即可;
此處也加載上生成sitemap的代碼吧;
<?php require('./wp-blog-header.php'); header("Content-type: text/xml"); header('HTTP/1.1 200 OK'); $posts_to_show = 1000; echo '<?xml version="1.0" encoding="UTF-8"?>'; echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:mobile="http://www.baidu.com/schemas/sitemap-mobile/1/">' ?> <!-- generated-on=<?php echo get_lastpostdate('blog'); ?> Diy By 老梁`s Blog (http://madamerex.com)--> <url> <loc><?php echo get_home_url(); ?></loc> <lastmod><?php $ltime = get_lastpostmodified('GMT');$ltime = gmdate('Y-m-d\TH:i:s+00:00', strtotime($ltime)); echo $ltime; ?></lastmod> <changefreq>daily</changefreq> <priority>1.0</priority> </url> <?php /* 文章頁面 */ $myposts = get_posts( "numberposts=" . $posts_to_show ); foreach( $myposts as $post ) { ?> <url> <loc><?php the_permalink(); ?></loc> <lastmod><?php the_time('c') ?></lastmod> <changefreq>monthly</changefreq> <priority>0.6</priority> </url> <?php } /* 文章循環(huán)結束 */ ?> <?php /* 單頁面 */ $mypages = get_pages(); if(count($mypages) > 0) { foreach($mypages as $page) { ?> <url> <loc><?php echo get_page_link($page->ID); ?></loc> <lastmod><?php echo str_replace(" ","T",get_page($page->ID)->post_modified); ?>+00:00</lastmod> <changefreq>weekly</changefreq> <priority>0.6</priority> </url> <?php }} /* 單頁面循環(huán)結束 */ ?> <?php /* 博客分類 */ $terms = get_terms('category', 'orderby=name&hide_empty=0' ); $count = count($terms); if($count > 0){ foreach ($terms as $term) { ?> <url> <loc><?php echo get_term_link($term, $term->slug); ?></loc> <changefreq>weekly</changefreq> <priority>0.8</priority> </url> <?php }} /* 分類循環(huán)結束 */?> <?php /* 標簽(可選) */ $tags = get_terms("post_tag"); foreach ( $tags as $key => $tag ) { $link = get_term_link( intval($tag->term_id), "post_tag" ); if ( is_wp_error( $link ) ) return false; $tags[ $key ]->link = $link; ?> <url> <loc><?php echo $link ?></loc> <changefreq>monthly</changefreq> <priority>0.4</priority> </url> <?php } /* 標簽循環(huán)結束 */ ?> </urlset>
網站根目錄的.htaccess(如果沒有則新建為txt文檔),加入如下規(guī)則:
Nginx 偽靜態(tài)規(guī)則,新增如下規(guī)則:
rewrite ^/sitemap.xml$ /sitemap.php last;
Apache偽靜態(tài)規(guī)則,新增如下規(guī)則:
RewriteRule ^(sitemap)\.xml$ $1.php
直接網站域名+sitemap.xml即可訪問;
2021年0901更新
如果站點是 http 則添加以下代碼:
wget -O /路徑/laoliang.net/sitemap.xml http://madamerex.com/sitemap.php
如果站點是 https 則添加以下代碼:
wget -O /路徑/laoliang.net/sitemap.xml --no-check-certificate http://madamerex.com/sitemap.php
想在.htaccess文件中增加新的重定向規(guī)則的話,必須加在以上代碼的前面,同時重定向語句的最后面一定加上參數(shù)[L],表明是之后不再進行重定向跳轉,避免無限循環(huán)的重定向文件錯誤。
Apache偽靜態(tài)規(guī)則 修改后的.htaccess如下:
RewriteRule ^sitemap?([0-9/-]+).xml$ sitemap.php?page=$1 [L]
也可以這樣寫~~~
RewriteRule ^sitemap.xml$ sitemap.php
nginx的服務在站點配置文件中添加 并重啟nginx服務;
rewrite ^/sitemap.xml$ /sitemap.php last;
問題未解決?付費解決問題加Q或微信 2589053300 (即Q號又微信號)右上方掃一掃可加博主微信
所寫所說,是心之所感,思之所悟,行之所得;文當無敷衍,落筆求簡潔。 以所舍,求所獲;有所依,方所成!