-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
54 lines (43 loc) · 960 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
include 'config.php';
if(!empty($_SEO[1]))
{
switch ($_SEO[1]) {
case 'privacy-policy':
include 'privacy-policy.php';
break;
case 'terms-of-service':
include 'terms-of-service.php';
break;
case 'people':
include 'people.php';
break;
case 'crm':
include 'crm.php';
break;
case 'jobs':
include 'jobs.php';
break;
case 'get-started':
include 'get-started.php';
break;
case 'login':
include 'login.php';
break;
case 'contact-us':
include 'contact-us.php';
break;
case 'logout':
session_destroy();
header('Location: '.$root);
break;
default:
include 'home.php';
break;
}
}
else
{
include 'home.php';
}
?>