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. :)