Forum Moderators: phranque
I currently Have THIS:
RewriteRule ^/([^/]+)/([^/]+)/? /index.php?something=$1&somethingelse=$2
Please tell me if I am doing this incorrectly, but what I want is for the address /filename/anotherfilename/ to redirect to the index.php?something=filename&somethingelse=anotherfilename page with the file names as seprate variables to be used in index.php
Thanks!
RewriteRule ^([^/]+)/([^/]+)/?$ /index.php?something=$1&somethingelse=$2 [L]
Jim