Forum Moderators: phranque
i'm new in this forum.
i have little problem that i can not solve.
i have links database page. This page have pagination, result per page, and keyword searching feature.
i use this rule in htaccess for pagination
RewriteEngine On
RewriteOptions inherit
RewriteRule ^index-([0-9]*).* /index.php?currpage=$1 [L]
after applying that rule, i can search and change result per page.
how can i add search and result per page to the current rewrite rule?
TIA for any respons,
dwi
Otherwise, we need to know what your 'search' and 'results-per-page' URLs look like, and what the corresponding call to the script should look like. If the 'search' and 'results per page' information is not carried in the URL itself, then we need to know where this information is.
Jim
RewriteRule ^index-([0-9]*)$ /index.php?currpage=$1 [b][QSA,L][/b]
Jim