I wanna turn PHP dynamic URLs into static URLs. For example, I want URLs like
http://www.example.com/book.php?title=twilight to become http://www.example.com/book/twilight
and http://www.example.com/writer.php?name=meyers to become http://www.example.com/writer/meyers
When it's done, will my form validation on the site change?
My URL rewriting needs might not be much too complicated.
I'm developing it locally using XAMPP, Apache and MySql. Later I'll put it online.
How do I do that? Is this kind of URL rewriting technique the most adviced for SEO?