Einzelnen Beitrag anzeigen
  #2 (permalink)  
Alt 14.08.2009, 16:11
3w-systems 3w-systems ist offline
xt:Commerce Support Kunde
 
Registriert seit: 25.06.2004
Beiträge: 20
Standard

nun eine Variante wäre die /index.php wie folgt zu ändern - ab Zeile 58

$smarty->caching = 0;
if (!defined(RM))
$smarty->load_filter('output', 'note');
$smarty->display(CURRENT_TEMPLATE.'/index.html');

ersetzen durch:

if ($_SERVER['REQUEST_URI'] != '/' && $_SERVER['REQUEST_URI'] != '/index.php') {
$smarty->display(CURRENT_TEMPLATE.'/index.html');
}
else {
$smarty->display(CURRENT_TEMPLATE.'/index_start.html');
}

naja, müsste gehen - "index_start.html" wäre dann Dein neues Startseiten-template
Mit Zitat antworten