i am trying to setup a paging system on one of my pages and i cannot get it to work right with rewrite.
basicaly i want it to read from page.php?show=1
when i try to rewrite it to /page/show/1/ it doesnt work properly.
any help with be appriciated, here is my htaccess file
RewriteRule ^/?([-A-Za-z0-9]+)/?$ index.php?page=$1
RewriteRule ^/?(.+)/([0-9]+)/?$ index.php?page=$1&id=$2
RewriteRule ^/?([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)/?$ index.php?page=$1&action=$2 [L]