-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
29 lines (28 loc) · 1.08 KB
/
index.php
File metadata and controls
29 lines (28 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/**
* 2013-2019 Frédéric BENOIST
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* Use, copy, modification or distribution of this source file without written
* license agreement from Frédéric BENOIST is strictly forbidden.
*
* INFORMATION SUR LA LICENCE D'UTILISATION
*
* L'utilisation de ce fichier source est soumise a une licence Academic Free License (AFL 3.0)
* Toute utilisation, reproduction, modification ou distribution du present
* fichier source sans contrat de licence ecrit de Frédéric BENOIST est
* expressement interdite.
*
* @author Frédéric BENOIST
* @copyright 2013-2019 Frédéric BENOIST <https://www.fbenoist.com>
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
*/
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;