在htaccess中用2个参数重写url

时间:2013-12-18 13:20:58

标签: php apache

example.com/index.php?route=pavblog/blogs&id=$2

我需要将此网址加载到

example.com/blogs/blogname

我试过像这样的.htaccess:

RewriteRule ^blogs/(.*) index.php?route=pavblog/blogs&id=$2

但它不起作用。

1 个答案:

答案 0 :(得分:1)

我想你想要这个:

RewriteRule ^blogs/(.*) index.php?route=pavblog%2Fblogs&id=$1

我将$2更改为$1(只有一个已捕获的群组),我将/转移到%2F