Trying to build a rewrite rule that would take a URL like this:
website.com/gallery/{WILDCARD}/gallery-name
and convert it to this:
website.com/gallery-name
I've tried this, but it doesn't work:
RewriteRule ^gallery/(.*)$\/(.*)$ /$1 [L,NC,R=302]