My problem is due to my .htaccess file. I have /index.php redirected to / and when it tries to save the score, it redirects to /?act=Arcade&do=newscore rather than /index.php?act=Arcade&do=newscore which causes it not to save the score.
Is there anyway to either change something where it saves the score to /?act=Arcade&do=newscore (no index.php) or a RewriteCond I can use in the .htaccess file to work around this problem?
Here is basically what I'm using in my .htaccess file, if I remove this part, the scores save. I need the scores to save and the functionality of this to remain the same.
Code:
RewriteCond %{HTTP_HOST} !^www\.example\.com
RewriteRule ^(.*)$ http://www.example.com/$1 [R=permanent,L]
RewriteCond %{THE_REQUEST} ^.*\/index\.php?
RewriteRule ^(.*)index\.php?$ http://www.example.com/$1 [R=301,L]
--------------- Added [DATE]1235340190[/DATE] at [TIME]1235340190[/TIME] ---------------
Adding:
Code:
RewriteCond %{QUERY_STRING} !act=Arcade&do=newscore
RewriteCond %{QUERY_STRING} !autocom=arcade&do=savescore
Has seem to have worked.