Ive had clean urls up and running for a while now, but after researching mod_rewrite and going through a few tutorials i still cant get an additional basic rewrite to happen.
heres the rule
RewriteRule ^page/(.*) .?page=$1 [L]
just looking to clean up some dynamic pages
and the rest of the .htaccess file..
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+) - [PT,L]
RewriteRule ^(.+) index.php
RewriteRule ^page/(.*) .?page=$1 [L]