<?php
if($_SERVER['REQUEST_URI']=='/index.php?route=pavblog/blogs'){
    header('Location: https://www.spoto.info');
    exit();
};
if($_SERVER['REQUEST_URI']=='/index.php?route=product/product/review&product_id=89&page=2' ||
    $_SERVER['REQUEST_URI']=='/index.php?route=product/product/review&product_id=89&page=3'){
    header('Location: https://www.spoto.info');
    exit();
}
// Version
define('VERSION', '2.3.0.2');

// Configuration
if (is_file('config.php')) {
	require_once('config.php');
}

// Install
if (!defined('DIR_APPLICATION')) {
	header('Location: install/index.php');
	exit;
}

// VirtualQMOD
require_once('./vqmod/vqmod.php');
VQMod::bootup();

// VQMODDED Startup
require_once(VQMod::modCheck(DIR_SYSTEM . 'startup.php'));

start('catalog');