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 ?
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';
Comments
$route['news'] = 'blog'; $route['news/(:any)'] = 'blog/$1';
$route['news'] = 'blog';