I would like to rewrite a URL using .htaccess
The URL
http://localhost/projects/notes/catagories.php?id=2
should be
http://localhost/projects/notes/catagories/2
My .htaccess file
RewriteEngine On
RewriteRule ^((?!catagories\.php)[^/]+)/?$ catagories.php?page=$1 [L]
Thanks