I have a 'jump' directory, and I'd like to be able to use 2 variables, separated by a forwards slash. http://www.domain.com/jump/variable1/variable2/ rewrite to index.php?v1=variable1&v2=variable2 What do I need to put in /jump/.htaccess?
This might help. RewriteEngine On RewriteBase / Rewriterule ^/([a-zA-Z0-9]+)/([a-zA-Z0-9]+)/$ index.php?v1=$1&v2=$2 [L] Code (markup):