Projet

Général

Profil

index.php

Eric Seigne, 30/11/2011 16:30

Télécharger (442 octets)

 
1
<?php
2
/**
3
 * Forwarder to doku.php
4
 *
5
 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6
 * @author     Andreas Gohr <andi@splitbrain.org>
7
 */
8

    
9
/*
10
 * Pour personnaliser l'intranet, on forke/exec si l'admin local a fait une page web
11
 * specifique abuledu
12
 */
13

    
14
if (file_exists("site.php")) {
15
  require("site.php");
16
  exit();
17
}
18
else if (file_exists("site.html")) {
19
  require("site.html");
20
  exit(); 
21
}
22

    
23
header("Location: doku.php");
24
?>
Redmine Appliance - Powered by TurnKey Linux