Edit url structre using .htaccess

Something similar to this should get you going. Please note I've not tested it.
Code:
RewriteEngine On
RewriteCond %{THE_REQUEST} /dir.php\?song=([^\s]+) [NC]
RewriteRule ^ /song/%1? [NC,L,R]
RewriteRule ^song/([^/.]+)/?$ /dir.php?song=$1 [NC,L]
 
Last edited:
Back
Top