I'm having some difficult time trying to get this to work, when I use just:
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:
anyone have any skillful suggestions? It makes sense in my head, it just doesn't work. Thanks!
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!