1

我正在尝试重写我的 WordPress 帖子的 URL,该 URL 当前是:

http://example.com/posts/titleofpost

http://example.com/titleofpost

我偶然做错了什么?

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

我有一种感觉title=$1是不对的,应该是一些不同的表达方式?这种表达方式可能是什么?

4

1 回答 1

3
RewriteEngine On
RewriteBase /
RewriteRule   ^posts/(.+)$   $1   [R=301,L]
于 2012-12-07T06:13:44.437 回答