I have a realurl configuration which includes:
'postVarSets' => array(
...
'96' => array(
'name' => array (
array(
'GETvar' => 'person',
),
),
),
)
This maps a URL like http://mydomain/name/knight to the GET parameter "person=knight"
However, if I try with http://mydomain/name/g.knight it fails. "g.knight" seems to be interpreted as the name of a file which does not exist. I cannot see the solution. Any ideas?