Is there other stuff in your .htaccess file? Is your .htaccess file in your web root or is it in a subfolder (e.g., the "modelinfo" directory) ?
Usually, if I have problems with mod_rewrite files, I try to create a file like brad says:
<?php
print_r($_GET);
die();
?>
Then I start with a simple mod_rewrite rule:
RewriteEngine On
RewriteRule ^(.*)$ somefile.php?match=$1 [L]
That usually helps you see if it's working at a basic level or not because you should be referred to your file and the contents of $_GET['match'] will have the entire bit from your RewriteRule.
Then you can add stuff little by little to make it more specific.
Another option is to set a mod_rewrite log file and monitor its contents to see what is matching and what isn't.