站点地图(sitemap.xml)就是方便快捷的给搜索引擎蜘蛛指明道路的一个方式,WordPress 中有很多插件来生成站点地图(sitemap.xml)的,但是大家都知道 WordPress 本身就是很臃肿的了,插件安装多了会影响网站的响应速度,所以有些功能用纯代码实现的尽量不要使用插件,网上这类的代码也是很多的,这边我就引入一下前辈的方法自己在做一些总结。
一、PHP 代码
首先将以下代码保存为 sitemap.php,然后将这个.php文件放到网站根目录下(网站根目录是指和 wp-admin、wp-content 同一级目录),然后在后台新建页面,模版选择站点地图,在外观 -- 菜单中将该页面加入自己想要显示的位置就行了。
- <?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'); ?>-->
- <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 } /* 文章循环结束 */ ?>
- <?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>
以上代码中将 博客单页面、分类、标签也都生成了,本博客只是将文章页生成了 xml 内容,大家可以根据自己的想法做修改。
二、设置伪静态
1、Nginx 服务器
找到你的 Nginx 的conf配置文件,在 location 中加上以下的一条规则,然后重启 Nginx 服务
- rewrite ^/sitemap.xml$ /sitemap.php last;
2、Apache 服务器
在你的网站根目录中找到 .htaccess 文件,在最后加上以下的一条规则,然后重启 Apache 服务
- RewriteRule ^(sitemap)\.xml$ $1.php
三、总结
注:如果以上步骤操作成功后,没有生成 sitemap.xml 文件,那么你就手动在你的网站根目录下创建一个 sitemap.xml 文件,然后在试试效果。
博主只是一名前端的小白,只是把自己用到的知识分享一下,要是有什么不对的地方,欢迎大家提出~~
继续阅读
评论