Hey everyone, just a real quickie originally i was using this:
RewriteRule ^(.*).script index.php?path=$1 [L]
to simply take blah1/blah2/blah3.script and assign it to path and then i explode path to have my directory elements. Now i've started building my site its clear that i would love to keep the get array as its sooo usefull! so now i've tried this:
RewriteRule ^(.*).script(.*) index.php?path=$1&test=$2 [L]
as a very simple test, but its still not retrning anything in $test. I know the get array is there as $_SERVER[REQUEST_URI] shows it but it just not appearing in the $test (which is actually visible within the get array - only empty)
so please could anyone shed some light on this! thanx! x