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]
soft2050 Reviewed by soft2050 on . SEO urls for autoindex php script I was making an direct download site with autoindex php script I need to change the urls to be more seo friendly with htaccess or php This is the default url when we click a directory (for example music) http://domain.com/index.php?dir=music/ Can we make the url to be like this ? http://domain.com/music/ Rating: 5