-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·38 lines (34 loc) · 1.13 KB
/
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
31
32
33
34
35
36
37
38
<?php
//============================================================+
// File name : index.php
// Begin : 2002-01-11
// Last Update : 2011-05-21
//
// Description : Redirect browser to main page
//
// Author: Nicola Asuni
//
// (c) Copyright:
// Nicola Asuni
// Tecnick.com
// www.tecnick.com
//
// License:
// Copyright (C) 2004-2013 Nicola Asuni - Tecnick.com
// Tecnick.com has granted the right for this file to be used for free only as a part of the RackMap software.
// The code contained in this file can not be used for other purposes without explicit permission from Tecnick.com
//============================================================+
/**
* @file
* Main page of RackMap
* Redirects to Public Area index.
* @package net.rackmap.public
* @brief Main page of RackMap
* @author Nicola Asuni
* @since 2004-04-20
*/
header('Location: admin/code/index.php'); //redirect browser to public main page
//============================================================+
// END OF FILE
//============================================================+