I am trying to remove article id from Joomla 3 URL. I searched around and the response is in
components\com_content\router.php
change 0 to 1 in
$advanced = $params->get('sef_advanced_link', 1);
on lines 38 and 290
and also comment out
if (strpos($segments[0], ':') === false) {
$vars['view'] = 'article';
$vars['id'] = (int)$segments[0];
return $vars;
}
I consider it works fine in Joomla 2.5 as all comments mention this.
But it does not do the job for me on my Joomla 3.3 website.
How can I achieve this without creating menu items for each article?