OK, I'm trying to rewrite URLs like this:
To show this in the address bar:
Here's what I have in .htaccess:
Does not work, but I'm obviously not getting how this thing works. Any help on this one from you mod_rewrite gurus out there?
Code:
http://www.site.com/index.php?option=com_virtuemart&Itemid=27 http://www.site.com/index.php?option=com_virtuemart
Code:
http://www.site.com/store/Itemid=27 http://www.site.com/store
Code:
RewriteEngine on RewriteRule ^store(/)?$ ^index.php?option=com_virtuemart([0-9]+)-([a-z]+)

Comment