I'm using SQL Server to store users uploaded songs.
Each song has an id(simple auto increment number) and a name.
I want to use URL Rewriting to query some song, like this:
http://wwww.mysite.com/song/song_name
The problem is that I also want to enable users to change their songs name and still use the old URL.
I thought of creating another table whice will contain the old names and then check for some song name in both tables, is that a good solution?