Ciao,
no purtroppo non ho risolto, ho trovato varie risposte in altri post ma nessuna mi ha risolto il problema.
Ti posto cosa ho fatto, magari a te funziona
Solution One:
In Global Configuration the value "Use Apache mod_rewrite" should be set to True, and, surely, htaccess.txt should be renamed to .htaccess
Solution Two: Default menu is set in the Main Menu. Go into your Admin page/control panel and go to the Menu Item Manager for the Main Menu. Click the check box next to the Home page at the top of the list. Then click on the yellow star icon in the upper-right corner.
Solution Three:If the component name under renderComponent() function is empty it raises a 404 Component Not Found Error. Due to this Joomla seems to be calling dispatch() on a component with an empty name, which should not be done For this we can put an if statement in the code which is under /home/username/public_html/joomla/includes/application.php
At the above path locate JcomponentHelper::renderComponent() at line 124 put in this "if" statement as bellow:
if(! empty($component)) {
$contents = JComponentHelper::renderComponent($component);
$document->setBuffer( $contents, 'component');
}
Solution Four:You can comment bellow line in "/index.php"
$mainframe->dispatch($option);
Make sure it looks like:
//$mainframe->dispatch($option);fonte: http://forums.eukhost.com/f15/404-component-not-found-error-joomla-11802/Ciao,
MX