Google News
logo
Zend framework - Interview Questions
What are the types of routing in the Zend framework?
There are the following types of routing in the Zend framework:
 
Hostname : It is used to match the host part of the URI.
Literal : It is used to match the exact URI.
Method : It is used to match the HTTP method of the incoming request.
Part : It is used to match the part of the URI path segment using custom logic.
Regex : It is used to match the URI path segment by Regex Pattern.
Advertisement