Rename blog to "news" in the URL
I'm on the Blog module settings screen (/fuel/blog/settings) and tried to change the path to the blog posts page that is by default at /blog to /news, but it doesn't appear to be working correctly. Go here to see the error:
http://dev.thehubway.com/newsIf you go to
http://dev.thehubway.com/blog you see the heading has changed to "News" but the news in the URL isn't working. Do I have to make a news.php controller for this to work? If so, what code do I put in there to redirect to the blog module?
Erik
Comments
$route['news'] = 'blog'; $route['news/(:any)'] = 'blog/$1';