.htaccess mod-rewrite rule with pagination

时间:2013-01-30 04:47:41

标签: php .htaccess mod-rewrite

我正在尝试编写一个mod重写规则来处理我网站上的分页链接。

现在,没有分页,我正在使用它:

RewriteRule ^category/(.*)/?$ /category.php?cat_slug=$1 [L,QSA]

我是.htaccess和mod-rewrite的初学者,并且我不确定如何继续在分页的末尾添加另一个get变量。

我希望我的网址结构如下: http://www.mysite.com/category/example/2

我尝试了以下内容:

RewriteRule ^category/(.*)/?$ /category.php?cat_slug=$1&page=$2 [L,QSA]

非常感谢任何指导。感谢。

1 个答案:

答案 0 :(得分:0)

这样的事情可能就是你需要的东西

RewriteRule ^category/([a-zA-Z_-]+)/([0-9]?) /category.php?cat_slug=$1&page=$2 [L,QSA]