Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.
Try something like:
RewriteRule ^foo/?$ /index.php?id=fooThe "?" after the slash means that it may or may not be there.
Try something like this:
RewriteRule ^([a-zA-Z0-9\_\-]+)/$ index.php?id=$1
RewriteRule ^([a-zA-Z0-9\_\-]+)$ index.php?id=$1
1 to 5 of 5