span style="color: #ff0000;">伪静态之前要提一句,其实用 cos-html-cache 2.3 插件实现 Wordpress 页面的真实静态化更是好的选择,按要求安装插件后,做好设置就不用管了,当你发布的文章链接头回被人点击的时候,自动在服务器上生成此文章的静态页,以后的访问者都直接访问这个已经生成的真实静态页了,速度快很多,服务器、数据库的负担也减少很多。静态化和伪静态化经常会由于服务商空间服务器的设置上的细微差别而有这样或那样的问题,所以选择空间前要做好考察。
我用的 Wordpress 2.3 汉化中文版,后台中文,英文版的找对应内容,一样操作过程。
进入管理后台,点菜单紧靠右边的“设置”,点选其下的“永久链接”(Permalinks)
点选“自定义,请在下面填入自定义结构”,再其下框里输入:/posts/%post_id%.html
点页面右下按钮“更新永久链接结构>>”保存设置,此时在 Wordpress 的根目录自动生成里一 .htaccess 文件,内容大体如下:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /codemo/wordpress23/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /codemo/wordpress23/index.php [L]
</IfModule>
# END WordPress
刷新下你的 Wordpress 首页,便会发现帖子链接都变成形如:http://www..com/codemo/wordpress23/posts/1.html 的静态页形式了,伪静态顺利实现!
另,其它自定义永久链接写法及对应效果:
0、
Permalinks写法:/%year%/%monthnum%/%postname%/
效果:http://www..com/2007/03/zero-to-riding-the-rails-in-four-months.html
1、
Permalinks写法:/%year%/%monthnum%/%day%/%postname%/
效果:http://www..com/2007/10/14/zero-to-riding-the-rails-in-four-months/
2、
Permalinks写法:/%year%/%monthnum%/%postname%.html
效果:http://www..com/2007/03/zero-to-riding-the-rails-in-four-months.html
3、
Permalinks写法:/%year%/%monthnum%/%day%/%postname%.html
效果:http://www..com/2007/03/15/zero-to-riding-the-rails-in-four-months.html
4、
Permalinks写法:/%category%/%postname%.html
效果:http://www..com/category/zero-to-riding-the-rails-in-four-months.html
转载作品,如果你认为侵害了你的权利,请联系:[email protected],我们将马上删除,谢谢!