// cleanup

This commit is contained in:
tDidierjean
2012-05-22 10:10:08 +00:00
parent 889ad6d356
commit 5e6801a6ce
+8 -11
View File
@@ -276,20 +276,17 @@ class ShopCore extends ObjectModel
if ($id_shop && !$is_main_uri)
{
foreach ($results as $row)
{
if ($row['id_shop'] == $id_shop && $row['main'])
{
$main_uri = $row['uri'];
break;
}
if (isset($main_uri))
{
// extract url parameters
$request_uri = substr($request_uri, strlen($found_uri));
// extract url parameters
$request_uri = substr($request_uri, strlen($found_uri));
header('HTTP/1.1 301 Moved Permanently');
header('Cache-Control: no-cache');
header('location: http://'.$row['domain'].$main_uri.$request_uri);
exit;
header('HTTP/1.1 301 Moved Permanently');
header('Cache-Control: no-cache');
header('location: http://'.$row['domain'].$row['uri'].$request_uri);
exit;
}
}
}
}