sintonia/htmlUI/redirect.php
paul.baranowski c4b96da797 CC-1695 Remove Campcaster Studio and make install easier
Changing htmlUI dir structure to be better.
2010-09-30 15:56:56 -04:00

10 lines
No EOL
250 B
PHP

<?php
if (strpos($_SERVER['PHP_SELF'], '~') !== false) {
list(, $user, ) = explode('/', $_SERVER['PHP_SELF']);
$base = "/$user/campcaster";
} else {
$base = "/campcaster";
}
header("LOCATION: $base/htmlUI/var/html/ui_browser.php");
?>