Hi,
my pagination links look like this:
http://localhost/controllerName/actionName?page=2&cat_id=1®_id=1
What can I do to get a more seo friendly naming?
For example like:
http://localhost/categoryName/regionName?page=2&cat_id=1®_id=1
What I already got is to modfiy the search form via jQuery to change the form action depending on the search - so I land already on the search results page with this url looking like
localhost/categoryName/regionName
I just need “to tell pagination” to use the URL and just add the vars.
What can I do to get this?
Thanks!!