I am new to using mod_rewrite and am trying to rewrite pages at the base level of my site:
www.site.com
I want to rewrite any of the following URLs www.site.com/main www.site.com/settings www.site.com/username
To: www.site.com/index.php?v=main www.site.com/index.php?v=settings www.site.com/index.php?v=username
I had this working when I had mod_rewrite set up under www.site.com/directory/ but can't figure out how to make it work with www.site.com
RewriteEngine On
RewriteRule ^/([^/\.]+)/?$ index.php?v=$1 [L]