// Phân luồng cho Cổng Điều Hành Phường Nhân Hòa
if (strpos($host, 'nhanhoa.bacninh.pro.vn') !== false) {
$nh_dir = __DIR__ . '/bacninh.pro.vn/nhanhoa';
chdir($nh_dir);
if (isset($_GET['app'])) {
$app_file = preg_replace('/[^a-zA-Z0-9_]/', '', $_GET['app']) . '.php';
if (file_exists($nh_dir . '/' . $app_file)) {
require $nh_dir . '/' . $app_file; exit;
}
}
require $nh_dir . '/index.php'; exit;
}
Warning: session_start(): Session cannot be started after headers have already been sent in /var/www/html/index.php on line 4