I\'m trying to write a .htaccess rule that would redirect someone asking for
http://mysite.com/questions/123/my-question-name
to
http://mysite
I would do something like this
RewriteEngine on RewriteRule ^questions/([0-9]+)/?$ questions/question_handler.php?qid=$1 [NC,L]