Forum Moderators: phranque
Currently my website contains no "?" or other variable stuff in the URL's of any kind. I want t make some "pagination" now (e.g. click here for next 10 products etc). Most of the stuff I found online can do this by adding for instance ?catID=10 to get the next 10 records to the URL.
I really want t do this like this "/10/" or something like that but still make it able to get the next ten results. I've seen this before on good SEO websites, but have no idea how to do this.
I used to do this with a handy wizard, do you guys know a wizard for Dreamweaver that can do this or have a good walktrough on how to do this?
Hope you ca help.
Kind regards.
Very often the URL will be different depending on whether you go to the page from the index page, or from page 2 - and that is a very bad idea.
Those type of sites are usually getting the content from a database. Is that what you are doing? The /10/ is fed to a rewrite function that gets the content from the real server location.
For instance: www.example.com/red-hats.html shows 10 red hats, then the next ten might look like this:
www.example.com/red-hats.html?catID=10 and so on.
What I thought wuld be better is something like www.example.com/red-hats/10/ or something.
But how to do this?