需要帮助mod_rewrite

时间:2011-03-25 13:45:17

标签: php .htaccess mod-rewrite

我目前的代码是

RewriteRule ^(.*)$ index.php?pg=$1 [L,QSA]

index.php?action=product shop.com/product
index.php?action=product/add shop.com/product/add

现在我想为某些页面添加分页,比如

index.php?action=product&page=1&show=20 shop.com/product/1/20
index.php?action=product/add&page=1&show=20 shop.com/product/add/1/20

我该怎么做?

1 个答案:

答案 0 :(得分:2)

RewriteEngine On

RewriteRule ^product$ index.php?action=product
RewriteRule ^product/add$ index.php?action=product/add
RewriteRule ^product/(\d+)/(\d+)$ index.php?action=product&page=$1&show=$2
RewriteRule ^product/add/(\d+)/(\d+)$ index.php?action=product/add&page=$1&show=$2


我建议你也看看this answer。我认为在这种情况下会更好。

相关问题