The problem is roughly - I need a request path like this:
host/var1/val1/var2/val2/var3/val3/...
to be overwritten like:
host/index.php?var1=val1&var2=val2&val3=var3&...
Any ideas ?
|
|
The problem is roughly - I need a request path like this: host/var1/val1/var2/val2/var3/val3/... to be overwritten like: host/index.php?var1=val1&var2=val2&val3=var3&... Any ideas ? |
||
|
|
|
|
Try these rules:
But you’re better off with the PHP solution. |
||
|
|
|
|
mod_rewrite isn't going to be able to parse key/value pairs on its own. Your best bet is to have index.php help out with the parsing. Your .htaccess file would look like this:
Then you would use PHP at the beginning of index.php to set up the $_GET variable:
|
||
|
|