I've created a blog from scratch to test my PHP/HTML/CSS/Jquery skills and such. Everythings going well and now I want to set up the htaccess file so that when a user reads a blog post the URL reads
http://www.mysite.com/blog/post-title-here
instead of
http://www.mysite.com/blog.php?id=30
Is this possible?
The blog setup is that the posts are held within a database. The post page is generated based on the ID of the blog post. The PHP retrieves the entire post via the ID and shoves it all into an object. So the blog titles is $blogpost->title;