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
RewriteRule ^http://([^/]*)/questions/(\d+)/(.*)$ http://$1/questions/question_handler.php?qid=$2
Your (.*) was probably too greedy so it was using http://mysite.com/questions/123/my-question-name as the first group matched
(.*)