-1

I have an URL

http://www.domain.com/song.php?id=MkJoY2JyX3FWY2Q3b09nUFlZTkdDQT09

And i want to change it to:

domain.com/song/MkJoY2JyX3FWY2Q3b09nUFlZTkdDQT09?

What is needed? Can anyone help me solve my problem??

Divyang Desai
  • 7,483
  • 13
  • 50
  • 76

1 Answers1

0

Write following code on your .htaccess file make sure mode rewrite rule is enable on your httpd.conf file

RewriteEngine On
RewriteRule ^song/([A-Za-z0-9-]+)$ song.php?id=$1; 
sunilwananje
  • 714
  • 5
  • 17