Hallo
I need to know if joomSef can handle this request.
We have a custom PHP script which is running under JUMI to perform and display some data.
The custom script is accessible through a SEF url such as
www.mysite.com/jumi-script
which is a rewritten (native Joomla SEF) version of
www.mysite.com/index.php?option=com_jumi...id=11&Itemid=271
Now we would like to filter data applying parameters such as
category=mycat&place=myplace
like this
/index.php?option=com_jumi&view=application&fileid=11&Itemid=271&category=mycat&place=myplace
and we would like to obtain a SEF url like this
/jumi-script/mycat/myplace
and process these variables in script with
$mycat = JFactory::getApplication()->input->post->get('category');
$myplace = JFactory::getApplication()->input->post->get('place');
Can this be achieved with joomSef? if yes, is this a native feature or we need to buy some specific extension to accomplish it?
Thank you