2010年5月21日

WordPress永久链接

wordpress可以通过修改永久链接的方法将你的博客地址静态化,前提是你的博客主机必须支持Mod
Rewrite,在本地用记事本新建一个1. htaccess 文件,然后上传至你的博客根目录 并改名为 .htaccess
设置属性为644。
如果您的.htaccess文件可写,我们将自动完成此功能。否则,您需要保证这些mod_rewrite 规则在您的.htaccess文件中。
mod_rewrite 规则如下:

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]


登录到wordpress后台,“设置”→“永久链接”。
在“自定义结构”中填写永久链接的格式。
常用的写法有:
样式:http://www.yourwebsite.com/123.html
写法:/%post_id%.html
样式:http://www.yourwebsite.com/archives/123.html
写法:/archives/%post_id%.html
样式:http://www.yourwebsite.com/2007/09/16/post-name.html
写法:/%year%/%monthnum%/%day%/%postname%.html
样式:http://www.yourwebsite.com/2007/03/post-name.html
写法:/%year%/%monthnum%/%postname%.html
样式:http://www.yourwebsite.com/category/post-name.html
写法: /%category%/%postname%.html
样式:http://www.yourwebsite.com/archives/post-name.html
写法:/archive/%postname%.html
样式:http://www.yourwebsite.com/post-name.html
写法:/%postname%.html
说明:
%year% 日志发布的年,4位数字,如:2004
%monthnum% 日志发布的月份,2位数字,如:05
%day% 日志发布当月的第几天,2位数字,如:28
%hour% 日志发布时间中的“小时”,2位数字,如:15
%minute% 日志发布时间中的“分钟”,2位数字,如:43
%second% 日志发布时间中的“秒”,2位数字,如:33
%postname% 一串处理过的日志标题。如,日志标题为“This Is A Great
Post!”,那么%postname%表示为“this-is-a-great-post”
%post_id% 日志的唯一编号
%category% 日志所在的分类
%author% 日志的作者
注意:设置完的永久链接 要等待一会才能生效

http://www.kiaora.cn/bbs/viewthread.php?tid=15226
-- 通过 Google Share Button 共享

Posted via email from aptopt's posterous

没有评论:

发表评论