forked from faktiva/prestashop-clean-urls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
30 lines (25 loc) · 881 Bytes
/
index.php
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
30
<?php
/*
* This file is part of the "Prestashop Clean URLs" module.
*
* (c) Faktiva (http://faktiva.com)
*
* NOTICE OF LICENSE
* This source file is subject to the CC BY-SA 4.0 license that is
* available at the URL https://creativecommons.org/licenses/by-sa/4.0/
*
* DISCLAIMER
* This code is provided as is without any warranty.
* No promise of being safe or secure
*
* @author Emiliano 'AlberT' Gabrielli <[email protected]>
* @license https://creativecommons.org/licenses/by-sa/4.0/ CC-BY-SA-4.0
* @source https://github.com/faktiva/prestashop-clean-urls
*/
header('Expires: Fri, 31 Dec 1999 23:59:59 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: ../');
return;