清除使用分页的类别页面的URL

时间:2019-07-18 13:09:46

标签: php .htaccess

我有一个网站,其类别分页如下

https://www.myweb.com/category.php?slug=commercial&page=1

我想把它变成这个

https://www.myweb.com/category/commercial/page/1

我目前在我的.HTACCESS中有这个

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

哪个生产

https://www.myweb.com/category/commercial

1 个答案:

答案 0 :(得分:0)

为类别分页添加此规则

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