我们怎样才能通过.htaccess这样做?

时间:2011-06-09 14:53:40

标签: .htaccess

我们需要在当前页面上显示来自wordpress安装的数据。示例是: 这一页: http://www.example.com/facts/index.php

需要显示此页面中的内容: http://www.example.com/news/new-facts/index.php

我们怎么能通过.htaccess做到这一点?

1 个答案:

答案 0 :(得分:0)

是的,你可以。

RewriteEngine On
RewriteRule ^/facts/(.*)$ /news/new-facts/$1

不确定WordPress是否会接受。