.htaccess URL重写,没有查询字符串变量

时间:2010-06-17 15:11:12

标签: .htaccess mod-rewrite url-rewriting

我必须重写以下网址,有人可以建议执行此操作的.htaccess文件的内容。

例如:

example.com/retrieve_cat.php?subcat=364&c=134

需要看起来像:

example.com/category/subcategory/

有可能重写这个吗?

1 个答案:

答案 0 :(得分:1)

Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteBase /
RewriteRule ^retrieve_cat.php?subcat=(.*)&c=(.*) $2/$1/