Blog Settings -> URL

edited December 2010 in Feature Requests
I don't really understand how to change blog/ to something like news/ , if i change in settings URL, the new url gives 404, works only on blog/ but all links to articles is with new url, so how can i fix this ?

Comments

  • edited December 2010
    You'll need to create a route as well in the fuel/application/config/routes.php file like so:
    $route['news'] = 'blog'; $route['news/(:any)'] = 'blog/$1';
  • edited 3:15PM
    thanks, now it works, but only worked without "/" like :
    $route['news'] = 'blog';
  • edited 3:15PM
    Oops... typo on my end. I've fixed that in the post to avoid further confusion.
Sign In or Register to comment.