example.com/index.php?route=pavblog/blogs&id=$2
我需要将此网址加载到
example.com/blogs/blogname
我试过像这样的.htaccess:
RewriteRule ^blogs/(.*) index.php?route=pavblog/blogs&id=$2
但它不起作用。
答案 0 :(得分:1)
我想你想要这个:
RewriteRule ^blogs/(.*) index.php?route=pavblog%2Fblogs&id=$1
我将$2
更改为$1
(只有一个已捕获的群组),我将/
转移到%2F
。