I have a link like this:
/catalog/section/?PAGEN_1=1&search=someWord
/news/?PAGEN_1=2
where PAGEN_1=(page number)
I try to set URL to:
/catalog/section/?page=1&search=someWord
/news/?page=2
But this not work for me. What am I doing wrong?
RewriteCond %{QUERY_STRING} (?:^|&)PAGEN_1=(.*)$
RewriteRule ^/(.*)$ /$1?page=%1 [L,R]
I need to save another GET params.