(Yaf >=1.0.0)
Yaf_Dispatcher::setDefaultAction — Change default action name
Change the action name which is used when an action name can not be extracted from the request URI. The name is normalized to lowercase.
actionThe name of the action.
Returns the Yaf_Dispatcher object itself on
success, or false if the application is not initialized.
Example #1 Yaf_Dispatcher::setDefaultAction() example
<?php
$app = new Yaf_Application(dirname(__FILE__) . "/conf/application.ini");
// Requests without an action part are now routed to "main" instead of
// "index", e.g. /user maps to UserController::mainAction
Yaf_Dispatcher::getInstance()->setDefaultAction("main");
$app->run();
?>