I' trying to make SEF URL in my Joomla site which is root/<menu-item-alias>/<view-name>/<item-alias> something like that.
I realize that if I add anything to return value of function MyComponentBuildRoute() in route.php, It always appear on my URL:
$segments[] = $view;
$segments[] = $item_alias;
return $segments;
I take a look at com_content in Joomla and it doesn't have the <view-name> part, just root/<menu-item-alias>/<item-alias> however in the code there is still something like
$segments[] = $view;
How can I do just like the default com_content do? How can I remove the view-name part or any other part from my SEF link ?

