Im running a Gamessitescript site and use mod rewrite to write all php files to html files ( for SEO resons) Now i added a highscore system for some games ( highscore.php ) but the highscore function doesnt work with mod_rewrite enabled. When i disable mod_rewrite, the highscore system works like a charm. So i figure when i exclude highscore.php within the htaccess file, the highscores should work (?) This is the content of my .htaccess file: RewriteEngine on RewriteRule ^(.*)\.html$ index.php?params=$1 [L]