.htaccess 326 B

12345678910
  1. Options +FollowSymLinks
  2. RewriteEngine on
  3. RewriteRule ^user/(.+)/$ display.php?u=$1 [NC]
  4. RewriteRule ^user/(.+)$ display.php?u=$1 [NC]
  5. RewriteRule ^artist/(.+)/$ display.php?a=$1 [NC]
  6. RewriteRule ^artist/(.+)$ display.php?a=$1 [NC]
  7. RewriteRule ^track/(.+)$ display.php?t=$1 [NC]
  8. RewriteRule ^track/(.+)$ display.php?t=$1 [NC]