Hello,
I have got a url like
this is the first page of url
second page is
if i sort it by date it goes like
I could not figure it out how to do the rewrite.
I managed make one for the first page
but i did not know what to do for the other pages.
Thank you for your help.
I have got a url like
this is the first page of url
PHP:
category.php?cat=movie
second page is
PHP:
category.php?cat=movie&page=2&sortby=
if i sort it by date it goes like
PHP:
category.php?cat=movie&page=2&sortby=date
I could not figure it out how to do the rewrite.
I managed make one for the first page
PHP:
RewriteRule ^category-(.*)$ category.php?cat=$1 [L,NC]
but i did not know what to do for the other pages.
Thank you for your help.






