我正在尝试编写一个 mod-rewrite 规则来处理我网站上的分页链接。
现在,没有分页,我正在使用这个:
RewriteRule ^category/(.*)/?$ /category.php?cat_slug=$1 [L,QSA]
我是 .htaccess 和 mod-rewrite 的初学者,我不确定如何在末尾添加另一个 get 变量以进行分页。
我希望我的 url 结构是这样的: http ://www.mysite.com/category/example/2
我尝试了以下方法:
RewriteRule ^category/(.*)/?$ /category.php?cat_slug=$1&page=$2 [L,QSA]
任何指导将不胜感激。谢谢。