lux / sitellite

Sitellite Web Content Management System (CMS)

sitellite / sitellite
100755 9 lines (5 sloc) 0.154 kb
1
2
3
4
5
6
7
8
9
<?php
 
$prefix = $_SERVER['REQUEST_URI'];
 
$prefix = preg_replace ('|sitellite/?$|', '', $prefix);
 
header ('Location: ' . $prefix . 'index/cms-app');
 
?>