• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

.htaccess mod_rewrite issues

psx-dude

Limp Gawd
Joined
Feb 17, 2001
Messages
372
I'm having some difficult time trying to get this to work, when I use just:

Code:
  RewriteRule ^userimage/([0-9]+)/category/([0-9]+) http://dev.secondangle.com/anime/anime.userimages.php?animeid=$1&categoryid=$2
  RewriteRule ^userimage/([0-9]+) http://dev.secondangle.com/anime/anime.userimages.php?animeid=$1

it works just fine, but i try to add a new page element and it doesn't pass the variable properly to the script, this is the code i'm trying to use:

Code:
  RewriteRule ^userimage/([0-9]+)/category/([0-9]+)/start/([0-9]+) http://dev.secondangle.com/anime/anime.userimages.php?animeid=$1&categoryid=$2&start=$3
  RewriteRule ^userimage/([0-9]+)/start/([0-9]+) http://dev.secondangle.com/anime/anime.userimages.php?animeid=$1&start=$2
  RewriteRule ^userimage/([0-9]+)/category/([0-9]+) http://dev.secondangle.com/anime/anime.userimages.php?animeid=$1&categoryid=$2
  RewriteRule ^userimage/([0-9]+) http://dev.secondangle.com/anime/anime.userimages.php?animeid=$1

anyone have any skillful suggestions? It makes sense in my head, it just doesn't work. Thanks!
 
Back
Top