I have moved my site from www.site.com/shop/ subfolder to root. Now the "shop" folder doesn't exist anymore and I would like to redirect people who still go to site.com/shop/whateverhtml to site.com/whateverhtml I have tried different Rewrite rules but with no luck.
RewriteEngine on
RewriteRule %{REQUEST_URI} ^/shop/.*
RewriteRule shop/(.*)$ /$1 [R=301,L]
or like this
RedirectMatch 301 ^/shop/$ http://site.com/
Thanks.