1 | <?php |
---|
2 | |
---|
3 | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | |
---|
6 | |
---|
7 | // | PhpWebGallery - a PHP based picture gallery | |
---|
8 | |
---|
9 | |
---|
10 | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | |
---|
11 | |
---|
12 | |
---|
13 | // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | |
---|
14 | |
---|
15 | |
---|
16 | // +-----------------------------------------------------------------------+ |
---|
17 | |
---|
18 | |
---|
19 | // | file : $Id: index.php 1912 2007-03-16 06:30:07Z rub $ |
---|
20 | |
---|
21 | |
---|
22 | // | last update : $Date: 2007-03-16 07:30:07 +0100 (ven, 16 mar 2007) $ |
---|
23 | |
---|
24 | |
---|
25 | // | last modifier : $Author: rub $ |
---|
26 | |
---|
27 | |
---|
28 | // | revision : $Revision: 1912 $ |
---|
29 | |
---|
30 | |
---|
31 | // +-----------------------------------------------------------------------+ |
---|
32 | |
---|
33 | |
---|
34 | // | This program is free software; you can redistribute it and/or modify | |
---|
35 | |
---|
36 | |
---|
37 | // | it under the terms of the GNU General Public License as published by | |
---|
38 | |
---|
39 | |
---|
40 | // | the Free Software Foundation | |
---|
41 | |
---|
42 | |
---|
43 | // | | |
---|
44 | |
---|
45 | |
---|
46 | // | This program is distributed in the hope that it will be useful, but | |
---|
47 | |
---|
48 | |
---|
49 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
50 | |
---|
51 | |
---|
52 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
53 | |
---|
54 | |
---|
55 | // | General Public License for more details. | |
---|
56 | |
---|
57 | |
---|
58 | // | | |
---|
59 | |
---|
60 | |
---|
61 | // | You should have received a copy of the GNU General Public License | |
---|
62 | |
---|
63 | |
---|
64 | // | along with this program; if not, write to the Free Software | |
---|
65 | |
---|
66 | |
---|
67 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
68 | |
---|
69 | |
---|
70 | // | USA. | |
---|
71 | |
---|
72 | |
---|
73 | // +-----------------------------------------------------------------------+ |
---|
74 | |
---|
75 | |
---|
76 | |
---|
77 | |
---|
78 | |
---|
79 | // Recursive call |
---|
80 | |
---|
81 | |
---|
82 | $url = '../'; |
---|
83 | |
---|
84 | |
---|
85 | header( 'Request-URI: '.$url ); |
---|
86 | |
---|
87 | |
---|
88 | header( 'Content-Location: '.$url ); |
---|
89 | |
---|
90 | |
---|
91 | header( 'Location: '.$url ); |
---|
92 | |
---|
93 | |
---|
94 | exit(); |
---|
95 | |
---|
96 | |
---|
97 | ?> |
---|
98 | |
---|
99 | |
---|