What is the best way to implement a friendly URL that has multiple variables using mod_rewrite?
I am building a web application that is client side js heavy with data being pushed in chunks from the server. I am trying to implement a solution for a friendly URL solution that takes a URL like: http://exmample.com/find/SomethingHere-or-there That equates to a series of variables not visible. So it might end up processing as this: http://exmample.com/index.php?loc=London&type=2&priceCat=10-15 I get the values by passing the friendly URL as a parameter then getting back the full URL. My initial implementation used a mod_rewrite rule to forward to a script that extracts the friendly url,