I have a PHP script located at http://sb1.dev.codeanywhere.net/~a70097sb/hc/onlinestatus/image.php that requires two GET variables: ign an
http://sb1.dev.codeanywhere.net/~a70097sb/hc/onlinestatus/image.php
GET
ign
You're on the right track. The capture pattern ([^/]+) matches everything up to the next /, so you'll need two of those.
([^/]+)
/
RewriteEngine On RewriteRule ^([^/]+)/([^/]+)\.png$ image.php?style=$1&ign=$2 [L,NC]