This has probably something to do with the new feature that redirects URLs in standard Joomla! SEF format to the JoomSEF URLs to prevent duplicates. Unfortunately, there is no option to disable this at the moment. We will add this option in next version.
You can disable this feature directly in the code following these steps:
1. Open the file /components/com_sef/joomsef.php
2. Around line 974 find this block of code:
if (count($_POST) == 0) {
// Non-SEF redirect
if ((strpos($jSef, 'index.php?') === false) && ($oldUrl != $jSef)) {
// Seems the URL is SEF, let's redirect
$f = $l = '';
if( !headers_sent($f, $l) ) {
$mainframe =& JFactory::getApplication();
$mainframe->redirect($jSef, '', 'message', true);
exit();
} else {
JoomSEF::_headers_sent_error($f, $l, __FILE__, __LINE__);
}
}
}
3. Either delete the block or just comment it out by adding /* and */ like this:
/*
if (count($_POST) == 0) {
// Non-SEF redirect
if ((strpos($jSef, 'index.php?') === false) && ($oldUrl != $jSef)) {
// Seems the URL is SEF, let's redirect
$f = $l = '';
if( !headers_sent($f, $l) ) {
$mainframe =& JFactory::getApplication();
$mainframe->redirect($jSef, '', 'message', true);
exit();
} else {
JoomSEF::_headers_sent_error($f, $l, __FILE__, __LINE__);
}
}
}
*/
That should disable this feature..
Or you can wait until we release the new version, but that will probably take some time, since the last one was released few days ago..
Or I can instruct you on how to downgrade JoomSEF, but since that must also be done manually, maybe the code modification is better option..
I can also do the modification for you, if you can send me the FTP access information to
Tato emailová adresa je chráněna před spamboty, abyste ji viděli, povolte JavaScript
Best regards,
ARTIO Support Team