我想知道是否可以将这些行写入一个
RewriteRule ^([^/]*)/sd$ /category.php?category_id=$1 [L,NC]
RewriteRule ^([^/]*)/sd/(.*)$ /category.php?category_id=$1&filters=$2 [L,NC]
我试过
RewriteRule ^([^/]*)/sd/?(.*)$ /category.php?category_id=$1&filters=$2 [L,NC]
但它不起作用。
提前致谢。