Wordpress中的htaccess RewriteRule

时间:2016-04-06 13:59:04

标签: wordpress .htaccess mod-rewrite

我想在Wordpress中进行自定义重写。

我有一个页面 http://example.org/blabla,我希望将http://example.org/blabla/qwerty重定向到同一页面,但使用" qwerty"在参数中。

其实我得到了这个:

Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

我试图在 RewriteBase / 下添加

RewriteRule ^blabla/(.*)$ /index.php?post=1024&myparam=$1 [NC,L]

但它不起作用。有人可以帮我弄这个吗? post = 1024是页面的帖子ID&#34; blabla&#34;在我的wordpress管理小组中。

感谢。

1 个答案:

答案 0 :(得分:0)

我使用像anubhava这样的API告诉我。