wordpress代码实现网站地图sitemap的html和xml的方法

今天介绍的就是不使用插件完成wordpress代码实现网站地图sitemap的html和xml的方法首先我先提供下sitemap.php的文件吧: 将文件下载下来,上传到当前文件夹的根目录,然后新建页面,选择站点地图模板即可!这样一个html的站点地图就OK了。在空间wordpress的根目录下创建xmlmap.php文件

  1. require('./wp-blog-header.php');
  2. header("Content-type: text/xml");
  3. header('HTTP/1.1 200 OK');
  4. $posts_to_show = 1000// 获取文章数量
  5. echo '"1.0" encoding="UTF-8"?>';
  6. echo '"http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
  7. xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">';
  8. ?>
  9.   
  10.       http://www.2zzt.com/
  11.       
  12.       daily
  13.       1.0
  14.   
  15. header("Content-type: text/xml");
  16. $myposts = get_posts( "numberposts=" . $posts_to_show );
  17. foreach( $myposts as $post ) { ?>
  18.   
  19.       
  20.       
  21.       monthly
  22.       0.6
  23.   
  24. // end foreach ?>

上传到根目录后,就是设置url转发规则了,目的是让http://www.2zzt.com/sitemap.xml能够被访问,当然这个sitemap.xml内容就是xmlmap.php的

根据不同的服务器环境来设置url转发规则!

首先是apache下的规则:

  1. RewriteEngine On
  2. RewriteBase /
  3. RewriteRule ^sitemap.xml$ xmlmap.php

将以上代码加入到.htaccess文件即可,接下来是nginx下规则:

  1. rewrite ^/sitemap.xml$ /xmlmap.php;

你可能感兴趣的:(wordpress)