.htaccess重写URL - 更改WordPress URL

时间:2012-12-07 06:10:55

标签: .htaccess mod-rewrite

我正在尝试重写我目前的WordPress帖子的网址:

http://example.com/posts/titleofpost

http://example.com/titleofpost

我偶然做错了什么?

RewriteEngine On
RewriteRule   ^posts/(.+)$   title=$1   [L]

我感觉title=$1是错的,应该是一些不同的表达方式?这个表达是什么?

1 个答案:

答案 0 :(得分:3)

RewriteEngine On
RewriteBase /
RewriteRule   ^posts/(.+)$   $1   [R=301,L]