Situation: We have an existing web app which accepts URL parameters and the app will then display a dynamic page based on those parameters.
We are redeveloping the web app to something else but we want to change the URL so it's more SEO friendly.
We still need to accept the old URL because of the legacy content that's out there. But we want it to be redirected/rewritten to the new style.
Example:
old URL: www.myhost.com/my-page-here?car=toyota&model=corolla
new URL: www.myhost.com/my-page-here/toyota/corolla
How can I do this via Apache rewrite/redirects? Thanks