首页 > 解决方案 > .htaccess 重写 Category/page/1

问题描述

这是我当前的代码.htaccess

# Rewrite for category.php?cat=xxxxx
RewriteRule ^category/([0-9a-zA-Z-]+) category.php?cat=$1&page=$2 [NC,L]

我越来越category/dog/1

但是我怎么能做到这样: category/dog/page/1

标签: .htaccess

解决方案


这是阅读和测试后的答案;

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

推荐阅读