How to change 'Blog' module route?
Hey, I'm new to Fuel CMS. I'm reading the docs and trying to figure things out, however there is one thing i can't find anywhere. I want to use the blog module and modify it so it becomes a news feed. How can I change the url so instead of looking like this:
www.example.com/blog
looks like this:
www.example.com/news
Is it possible? Or do I have to create my own 'news' module?
thanks for your help!
Comments
1. Create a route like so:
$route['blog|blog/(:any)$'] = 'news/$1';
2. Change the "URI" value in the blog settings area to "news".