forked from PHPFusion/PHPFusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
66 lines (66 loc) · 2.83 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) PHP-Fusion Inc
| https://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: index.php
| Author: PHP-Fusion Development Team
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
require_once "maincore.php";
$settings = fusion_get_settings();
if ($settings['site_seo'] && !isset($_GET['aid'])) {
define("IN_PERMALINK", TRUE);
$router = PHPFusion\Rewrite\Router::getRouterInstance();
$router->rewritePage();
$filepath = $router->getFilePath();
if (empty($filepath) && filter_var(PERMALINK_CURRENT_PATH, FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED)) {
redirect(PERMALINK_CURRENT_PATH);
} else {
if (isset($_GET['lang']) && valid_language($_GET['lang'])) {
$lang = stripinput($_GET['lang']);
set_language($lang);
$redirectPath = clean_request("", array("lang"), FALSE);
redirect($redirectPath);
} else {
if (isset($_GET['logout']) && $_GET['logout'] == "yes") {
$userdata = Authenticate::logOut();
redirect(BASEDIR.$settings['opening_page']);
} else {
if (!empty($filepath)) {
if ($filepath == "index.php") {
redirect(BASEDIR.$settings['opening_page']);
} else {
require_once $filepath;
}
} else {
if ($_SERVER['REQUEST_URI'] == $settings['site_path'].$settings['opening_page']
or $_SERVER['REQUEST_URI'] == $settings['site_path']."index.php"
or $_SERVER['REQUEST_URI'] == $settings['site_path']
) {
redirect(BASEDIR.$settings['opening_page']);
} else {
$router->setPathtofile("error.php");
$params = array(
"code" => "404",
);
$router->setGetParameters($params);
$router->setservervars();
$router->setquerystring();
require_once BASEDIR."error.php";
}
}
}
}
}
} else {
redirect(BASEDIR.$settings['opening_page']);
}