To catch this string in the query string, as you showed it, you need to use RewriteCond, because the regular expression is not checked for the query string in the redirection rule. Something like this should do the trick:
RewriteCond %{QUERY_STRING} cp_tpl=productlist.html
RewriteRule .* / [R,L]
The above line will contain the query line. If yow wants to remove the query string, just add? after /, i.e.:
RewriteRule .* /? [R,L]