I'm currently trying to create a .htaccess file that essentially converts this:
[From] http://www.example.com/pagename.php?1=name&2=email&3=hash
[To] http://www.example.com/pagename/name/email/hash
Which can then be read in PHP as $name = $_GET[1]; $email = $_GET[2] and so on...
Where pagename is equal to the filename without the file extension and then every trailing slash after that is set as a new GET variable incrementing by one (in a way that you could theoretically define unlimited trailing slashes and it would continue to increment these $_GET variables by one.
Anyone know how?