当前位置: 首页 > 网站建设 > WordPress建站 > WordPress网站免插件实现站点地图(sitemap.xml)

WordPress网站免插件实现站点地图(sitemap.xml)

发布于:2015-7-28 最后更新:2018-10-26 WordPress建站 7条评论 11,063 views
本站提供Linux服务器运维,自动化脚本编写等服务,如有需要请联系博主微信:xiaozme

在之前小z博客发表过一篇WordPress免插件实现站点地图的文章,这篇文章仅仅使用页面模板来实现文章归档,并不算真正的站点地图,那么在这篇文章中将详细介绍下使用代码的方式来实现利于搜索引擎蜘蛛抓取的sitemap.xml站点地图。

sitemap

一、上传页面程序

将下面的代码另存为sitemap.php,然后通过FTP工具上传到网站根目录,确保通过http://您的域名/sitemap.php可以正常访问,比如:http://www.xiaoz.me/sitemap.php

<?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/">'
?>
  <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
/* 文章页面 */ 
header("Content-type: text/xml");
$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 } /* 文章循环结束 */ ?>  
<?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 }} /* 单页面循环结束 */ ?> 
<?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 }} /* 分类循环结束 */?> 
<?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  } /* 标签循环结束 */ ?> 
</urlset>

二、添加伪静态规则

如果您是Apache服务器,直接修改网站根目录的.htaccess文件,添加如下伪静态规则:

RewriteRule ^(sitemap)\.xml$ $1.php

nginx服务器,找到对应的虚拟主机.conf文件(AMH主机面板的配置文件在/usr/local/nginx/conf/vhost/您的网站.conf),添加如下规则,并重启nginx服务器。

rewrite ^/sitemap.xml$ /sitemap.php last;

三、访问测试

若您的wordpress博客安装了类似WP-Super-Cache的缓存插件,先删除网站缓存,最后访问:http://您的域名/sitemap.xml 进行测试,比如http://www.xiaoz.me/sitemap.xml,同时您还可以将网站地图(sitemap.xml)添加到网站底部并提交到各大搜索引擎,从而提高收录。


回复 小z 取消回复

您的电子邮箱地址不会被公开。 必填项已用*标注


已有7条评论