In my .htaccess file, I have the following line:
RewriteRule ^f/(.*)$ /blah.php?g=$1
I'm trying to make a url such as
example.com/f/three
to be interpreted as
example.com/blah.php?g=three.
However, visiting a url like the former results in a "maximum internal redirects" error. What am I doing wrong?