For this you need to use RedirectMatch :
RedirectMatch 301 ^ http://www.example.co.uk/blog/
Be sure to check this out in the new browser.
Or, if you want to delete any existing query string, then use mod_rewrite :
RewriteEngine On RewriteRule ^ http://www.example.co.uk/blog/? [L,R=301]
source share