i have a rule which:
RewriteRule ^cat_ap~([^~]+)~(.*)\.htm$ /urban/cat_ap.php?$1=$2 [L]
goes to cat_ap.php?nid=xxxxxxx
now I have to add some other support.
cat_ap~pnid~290~nid~96666~posters~Sports.htm
needs to resolve to cat_ap.php?pnid=290&nid=96666 (I'm not concerned with the end of the link though I do need it in there for legacy paid search traffic).
Also, I need to get a page_num out of the link to calculate pagination.
cat_ap~PageNum_GetProduct~10~nid~290.htm needs to resolve to cat_ap.php?PageNum_GetProduct=10&nid=290
I kind of need to encompass all these scenarios either into a single or multiple rules.
Any ideas? I'm reading up on this right now but am stuck.
Thanks