Forum Moderators: phranque
RewriteRule ^(.*)/(.*)/(.*)/(.*)/$ /category.php?cat=$1&subcat=$2&subcat2=$3&page=4 [L]
I need the last "(.*)/" (&page=4) to be optional
it works perfectly in this form:
RewriteRule ^(.*)/(.*)/(.*)/$ /category.php?cat=$1&subcat=$2&subcat2=$3 [L]
But it excludes pagination, witch is not on every result page
Please advice