I am trying to implement URL rewriting in my PHP application. Can someone share a step by step procedure of implementing URL rewriting in PHP - MYSQL.
In my application I want to implement following URL rewriting, I want to redirect
1. http://example.com/videos/play/google-io-2009-wave-intro
2. http://example.com/videos/play/203/google-io-2009-wave-intro
to
1. http://example.com/videos/play.php?title=google-io-2009-wave-intro
2. http://example.com/videos/play.php?id=203
Please tell me how to implement both url rewriting in any of the above way.
Edited: please answer this in your answers >> One more thing which URL will be best according to SEO, management, application point-of-view out of the following two types.
1. http://example.com/videos/play/google-io-2009-wave-intro
2. http://example.com/videos/play/203/google-io-2009-wave-intro
Thanks,