Hi Rizwan,
You should start by having a look at the "Default routes" section of
this page in the documentation:
http://framework.zend.com/manual/en/zend.controller.router.html
FYI, it sounds as if your application will be served from myapp/public/,
this would be known as the baseUrl. Beyond that, the url scheme you
describe is actually the default route in Zend Framework.
Assuming
/myapp/public - is actually where your app is located
Then you get:
/myapp/public/:module/:controller/:action/:paramName/paramValue/../..
OR
/myapp/public/:controller/:action/:paramName/paramValue/../..
(where ../../ is param2, param2Value and so on).
Hope this gets you started,
Ralph
attractive eyes wrote:
hi all,
hoping that you all enjoying healthy lives. I am a beginner of zend
framework. I want to customize query string parameters in URL. for example,
I want to customize query string from
"http://localhost/myapp/public/admin/index/list/Page/2?select=title" to
"http://localhost/myapp/pulic/admin/index/list/Page:2/select:title" or
"http://localhost/myapp/pulic/admin/index/list/2/title". Please guide me
about it.
Regards
Rizwan