Forum Moderators: Robert Charlton & goodroi
Personally, if I use parameters I like to keep my variable names short, and their values descriptive:
EG
C=Index
C=Green-Widgets
C=Widgeting
NOT
Category=I
Category=GWs
Category=Wdgtng
Why?
Values change on a 'page-by-page' basis, but variables remain constant.
Which is more accurately descriptive for a URL?
?C=Green-Widgets&P=1
?Category=GW&Page=1
Think about how you would structure your site with directories and what you would use as descriptors for directories / pages, then make those your values.
(/=Variable : Directory=Value :: /Green-Widgets/1 = C=Green-Widgets&P=1)
Justin