01-24-2012, 05:26 PM
[eluser]Aken[/eluser]
Whoops, sorry. The URL for viewing a news article the way you have it set up now would be:
If you want to use the URL structure with "news/slug", then you need to add a route:
Whoops, sorry. The URL for viewing a news article the way you have it set up now would be:
Code:
domain.com/index.php/news/view/slug
If you want to use the URL structure with "news/slug", then you need to add a route:
Code:
$route['news/(:any)'] = 'news/view/$1';