View Single Post
  #16  
Old 01-26-2010, 02:20 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 18,293
BMR777 is on a distinguished road
Default RE: htaccess problem

Quote:
Originally Posted by Soslowly
the script is in the root: adottami.cz.cc

.htaccess:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^get/([0-9]+).gif$ /siggy.php?id=$1 [L]
That looks like it should work. The only other thing I can think is maybe:

Code:
RewriteRule ^get/([0-9]+).gif$ /siggy.php?id=$1 [L]
Should be:

Code:
RewriteRule ^get/([0-9]+).gif$ siggy.php?id=$1 [L]
Try that and see if the alternate images work then. :)
Reply With Quote