How to turn dynamic URL into static URL
- by Rafael Carvalho
I am developing a website using PHP and Apache.
I wanna turn my URLs from
www.example.com/book.php?book=title
into something like this, if it is possible of course:
www.example.com/book/title
Notice that the title of the books are unique and cannot be repeated.
I`ve read about this, but none of the posts were clear enough for a beginner like me.
Do you guys know any tutorial that explains that?
Thanks.