I am creating a new module for the blog and stuck.
Requirement I have a list of blogs that I am showing at the following url i.e. magento.local/blogs It is working fine. Now, my requirement is when I click on the "Read More" link to read the blog details then I need to generate the URL i.e. http://magento.local/blogs/how-to-login-to-magento/
Currently, I am doing the following i.e. href="getUrl('blogs/', array('title' => $news->getTitle())) ?>"> Read More
The above code is generating the following link i.e. http://magento.local/blogs/index/index/title/how to login to magento
I know that getUrl is required module/controller/action as first parameter but again it is showing the 'title' parameter in the URL as well.
I hope I have provided enough information about my requirement. Looking for help over here or link to an article link that describes how to achieve the current requirements....