I Newly to develop a Component with SEF Feature.
I Pass Following query for route.php
JRoute::_('index.php?com_example&view=profile&layout=item_interestonme&id='.$itemval["profile_id"]);
In route.php,
$query display Array ( [Itemid] => 114 [option] => com_example )
Only. view, layout, id not display. how to fix this issue.
There is a preprocess method in the Router-interface, defined like this:
You could try to override this in route.php. Perhaps the display-parameter is stripped from the query in the default implementation?