You could also have your htaccess like this:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/(.*)/(.*) mvc.php?model=$1&view=$2¶meters=$3 [L,NS]
This is just another way to do it, although personally I prefer streetpc's way.