You might want to try something like this in your .htaccess file:
Code:
RewriteEngine On
RewriteBase /
RewriteRule ^/([^/\.]+)/?$ gallery.php?type=$1 [L]
It will redirect everything to gallery.php, i would suggest using a prefix before so it's targeted but that would be your choice.