23 lines
631 B
PHP
23 lines
631 B
PHP
<?php
|
|
/*
|
|
* 2013 - 2015 CleanDev
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This file is proprietary and can not be copied and/or distributed
|
|
* without the express permission of CleanDev
|
|
*
|
|
* @author CleanPresta : www.cleanpresta.com <contact@cleanpresta.com>
|
|
* @copyright 2013 - 2015 CleanDev.net
|
|
* @license You only can use module, nothing more!
|
|
*/
|
|
|
|
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
|
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
|
|
|
header('Cache-Control: no-store, no-cache, must-revalidate');
|
|
header('Cache-Control: post-check=0, pre-check=0', false);
|
|
header('Pragma: no-cache');
|
|
|
|
header('Location: ../../');
|
|
exit; |