iffy guy wrote:
hi,

How can i have controller ignore the ~user in the url:
http://loalhost/~user/module/controller/action/. <http://loalhost/~user/module/controller/action/.>..


You can use the setBaseUrl method in Zend_Controller_Front;

$front = Zend_Controller_Front::getInstance();
$front->setBaseUrl('http://loalhost/~user/');


Cheers

Shaun

Reply via email to