The following, in a .htacces file, will allow a user to enter URL:
/Christian.Music.Media/abc-def/1134.htm
and be served this page:
/Christian.Music.Media/musicvideos.htm?cat=video&artist=abc&title=def&id=1134
-----
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule Christian.Music.Media/([^-/.]*)-([^-/.]*)/([^-/.]*)\.htm$ /Christian.Music.Media/musicvideos.htm?cat=video&artist=$1&title=$2&id=$3 [L]