I have the following URL: http://www.domain.com/keyword/b21?f=&ca1=50&p=1
And the RewriteRule
I am trying to use is as follows:
RewriteRule ^([^.]+)/b([0-9]+)?f=([^.]+)&p=([0-9]+)$ script.php?id=$2&p=$2&filters=$3
Unfortunately this rule is not matching the URL.
I think it has something to do with the ?
as i know this is a character used in regualr expressions.
Any help would be greatly apprecriated.