I have a url rewrite rule in my .htaccess file.
Code:
RewriteRule ^nameofpage$ /file.php?var=1&var2=a&page=1 [L]
The pagination script adds a variable page 1 or page 2. It works if i use the entire url without the .htaccess rewrite rule.
Code:
file.php?var=1&var2=a&page=1
It does not work if i use this
I would like to use the url above. As far as the rewrite rule, can it be changed to accommadate the pagination var?