Hey I needed some help with mod_rewrite
I want to change my url from
http://domain.com/page.php?page=AB CD
to
http://domain.com/page/AB CD
or
http://domain.com/page/page/AB CD
How do i do it. I did try this pice of code and created .htaccess file but it didnt help
RewriteEngine on
RewriteRule ^page/([^/.]+)/?$ index.php?page=$1 [L]