Skip to content

Commit

Permalink
Merge pull request #16 from tom-combet/add-root-index-file
Browse files Browse the repository at this point in the history
Add index file at root
  • Loading branch information
tom-combet authored Nov 6, 2023
2 parents 8dee7d0 + 4440fda commit 4d8e3d6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php
/**
* Copyright since 2019 Kaudaj
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @author Kaudaj <[email protected]>
* @copyright Since 2019 Kaudaj
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (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;

0 comments on commit 4d8e3d6

Please sign in to comment.