Code: Select all
$this->RegisterRoute('/[sS]hop\/product\/(?P<productalias>[A-Za-z0-9-]+)$/',array('action'=>'default'));
but, the content that my default action spits out gets put into the refering static page (either that or the home page if i type the address in directly)
i tried overriding it by putting page=>shop in the default params aray in my regiterRoute function like so:
Code: Select all
$this->RegisterRoute('/[sS]hop\/product\/(?P<productalias>[A-Za-z0-9-]+)$/',array('action'=>'default','page'=>'shop'));
I assume there is something I am missing here. Please Help! Thanks guys
