i have made a website in php.
There is a list of stories title stored in database and when user click any title among them then user is redirected to a page with a query string on it. like story.php?id=25
This means story with id 25 is now going to be displayed. Now i want to rewrite URL but when i rewrite it there occurs a problem.
In story.php page i am reading the query string like $_GET['id'].. but after URL rewriting i am unable to read it like this. Can any body suggests what to do