This tip covers configuration in Options/Permalinks [Edit Permalink Structure] for WordPress users.此提示,包括配置在选项/永久[编辑永久性的结构]为WordPress用户。 My version is WordPress 1.5.我的版本是在WordPress 1.5 。

By default WordPress uses a query string to identify a post.默认情况下,在WordPress使用一个查询字符串,以确定一个职位。 This is neither search engine friendly nor human friendly.这既不是搜索引擎友好,也没有人类的友好。 A better way is to use a custom URI to better identify your posts.更好的办法是使用自定义的URI ,以便更好地查明您的职位。 Many bloggers include a date as part of the permalink.许多Blogger包括一个日期,作为部分的永久性。 I advise against it我奉劝反对 . The date of the post is not so important as to be part of the URI!日期后不是那么重要,因为要的一部分,开放的我们!

My suggestion is to use a simple structure containing the post-slug as your Permalink URI.我的建议是使用一个简单的结构,含有后段塞作为您的永久开放的我们。 I use:我使用:
Structure: /index.php/archive/%postname%/结构: /的index.php /存档/ % postname % /

Note that there is an index.php embedded.请注意,有一个嵌入式的index.php 。 This is fine with search engines and humans too.这是罚款与搜索引擎与人类太。 And it will work great.它将工作的伟大。 It doesn’t require mod_rewrite functionality or change to htaccess.它不需要mod_rewrite的功能或改变htaccess的。 Something as simple as this will work in all configurations.一些简单的,因为这将工作在所有的配置。

For category base I use simply: /index.php/category类基地,我用简单: /的index.php /类别

This is just a simple example.这仅仅是一个简单的例子。 You can make your URI as complicated as you want.您可以作为复杂的,开放的我们您想要的。 Just remember to test it.不过,别忘了测试。
Personally I like it short and simple.亲自我喜欢它的短期和简单。

Update 1 : Please refer to the comments below for points and counterpoints on this topic. 更新1 :请参阅的评论,下面分和counterpoints关于这一主题的。

Update 2 : The objections raised by some people is that having an identical named title for posts will cause problems with WordPress. 更新2 :提出的反对意见,有些人是有一个相同的名称命名的职位会造成问题的WordPress 。 This is not a valid observation anymore.这是不是一个有效的观察了。 In other words you can have 10 posts named “Happy New Year” and WordPress will assign unique post-slug to each.在其他的话,您可以有10个职位,命名为“新年快乐”和WordPress所将指派独特的后段塞每个。 Simply said this approach is without any drawbacks AFAIK.简单地说,这种做法是没有任何缺点, afaik 。

Update 3 : Cem commented: 更新3 :杰姆评论说:

For future reference, I was able to get permalink URL rewriting working in WordPress by creating a php.ini at my domain root with the following configuration:以供日后参考,我是能够得到永久的URL重写工作在WordPress建立的php.ini在我的网域根目录具有以下配置:

cgi.fix_pathinfo = 1 cgi.fix_pathinfo = 1
cgi.force_redirect = 0 cgi.force_redirect选项设为= 0

Several people have found it useful on various environments including but not limited to IIS on windows as can be seen from the comments.几个人发现有用的各种环境,包括但不限于非法入境者在Windows中可以看出,从评论。 Thanks Cem for sharing!杰姆感谢分享!

BTW: Personally I use /archive/%postname%/ for my的BTW :我个人使用/存档/ % postname % /我的 Stem Cell Research Blog干细胞研究的博客 without requiring any changes.而不需要任何改变。

The greatest benefit is that you don’t have to embed index.php as part of URL, possibly slightly increasing your SERP.最大的好处是你不用嵌入的index.php的一部分,网址,可能略为增加您的serp 。