Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.
This may not be enough for you, but try something like this:
RewriteEngine On
RewriteRule ^band/([a-zA-Z0-9_]+)/?$ /band.php?q=$1Here's what it says:
Then, you're telling it to redirect to band.php and pass it the band name as the querystring. mod_rewrite will save anything you enclose in parentheses as a variable. The first "()" contain the variable named $1, the second contain $2, and so on. Therefore, "[a-zA-Z0-9_]+" in the rule given above will store the band name in $1. If you want to test it, add "[R]" to the end of the rule. This will actually redirect the user to "/band.php?q=whatever" instead of leaving the URL as "/band/whatever".
Sorry if this isn't as comprehensive as you want, but hopefully it'll get you started.
1 to 3 of 3