Say I have a URL like this:
http://somewebsite.com/country-1/state-il/city-chicago/filter1-1,2,3/filter2-9,8/
How do I write the mod_rewrite code to get the parameters like this:
country=1 state=il city=chicago filter1=1,2,3 filter2=9,8
Thanks in advance Srini
Something like this might work
Rewrite ^country-([0-9]+)/state-([a-zA-Z]+)/$ mypage.php?country=$1&state=$2 [NC]