Hey, looking for a little help! I have only a basic knowledge in php and databases, enough to get me by and I dont know where to begin with .htaccess files. I have a basic script I've written and the website was offline for quite some time, now I have updated the script and got it back online I find my links don't work how they used to. It's a small arcade style website and I would like my urls to be formatted as domain.com/play/game-url-slug.php as they used to be, currently due to that format not working I am using domain.com/game.php?id=game-url-slug. inside the play folder is one file my .htaccess file containing the following: RewriteEngine On RewriteRule ^(.+)\.php$ /game.php?id=$ [NC] Code (markup): When I visit domain.com/play/game-url-slug.php i see the correct page (game.php) but with no values that should be retrieved from the database and echo'd such as the game, description ect.. The problem seems to be that the script doesn't see the ?id=url-slug there for doesn't load the appropriate data. Please can someone advise me of my problem, Many thanks, Callum.