Bu soru çok açıklayıcı olmak değil ama gerçek şu ki ben bu soru için doğru terminoloji nedir çok emin değilim başlığı için özür dilerim. Ben Zend Framework kullanarak yeni duyuyorum.
Imagine this url: www.foo.com/bar The code below takes "bar" and passes it through to the index controller's load action. However I have another controller called "mypresentation" which is getting ignored now the router below has been added to the Bootstrap.
$route = new Zend_Controller_Router_Route(
'/:prospect',
array('controller'=>'index', 'action' => 'load'));
$router->addRoute('load', $route);
Nasıl yönlendirici kodlanmış kontrolörleri görmezden yapmak için?
Herhangi bir yardım çok takdir ve ben daha fazla bilgi alabilirsiniz zaman eğer ben başlığını değiştirmek olacak.
Alex.
Düzeltme:
$prospectRoute = new Zend_Controller_Router_Route(
'/:prospect',
array('controller'=>'index', 'action' => 'load')
);
$route2 = new Zend_Controller_Router_Route(
'mypresentation',
array('controller' => 'mypresentation')
);
$router->addRoute('index', $prospectRoute);
$router->addRoute('mypresentation', $route2);