View Single Post
  #2  
Old 07-23-2014, 06:56 PM
Missy Master's Avatar
Missy Master Missy Master is offline
Pet-Sim.Online
 
Join Date: Jan 2010
Posts: 475
Gender: Unknown/Other
Credits: 75,345
Missy Master is an unknown quantity at this point
Default

I had a big problem with my .htaccess of all things, and it did the same thing.

Make a new file and add JUST this to it.

You want this in your main dir where the pet site is loaded. If you can name the file .htaccess its good, if not see if you can name it htaccess.

good luck!



RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]
RewriteCond %{REQUEST_URI} !\.(js|css|gif|jpg|png|ico)$ [NC]
RewriteRule ^(.*)$ index.php [QSA,L]
RewriteRule ^get/([0-9]+).gif$ /click/siggy/$1 [L]
Reply With Quote