Place this in .htaccess file

Code: 
RewriteEngine On
RewriteRule ^(.*)$ index.php?dir=$1 [L]
But that will make any page on your site take as a category. So i would say to use urls like: http://domain.com/dir/music/

And code for that:

Code: 
RewriteEngine On
RewriteRule ^dir/(.*)$ index.php?dir=$1 [L]