fixing redirect to htmlUI in DevelopmentEnviroment

This commit is contained in:
sebastian 2006-03-14 13:08:39 +00:00
parent 3422c3c038
commit 0e8d92db9e
4 changed files with 7 additions and 2 deletions

View file

@ -161,7 +161,6 @@ install: configure_apache
${CP} ${VAR_DIR}/redirect.php ${USR_VAR_DIR}/LiveSupport/index.php
${CP} ${VAR_DIR}/redirect.php ${USR_VAR_DIR}/LiveSupport/htmlUI/index.php
${CP} ${VAR_DIR}/redirect.php ${USR_VAR_DIR}/LiveSupport/htmlUI/var/index.php
${CP} ${VAR_DIR}/*.php ${USR_VAR_DIR}/LiveSupport/htmlUI/var
${CAT} ${VAR_DIR}/ui_conf.php.template | ${SED} -e ${REPLACE_SED_STRING} > ${USR_VAR_DIR}/LiveSupport/htmlUI/var/ui_conf.php
${CP} ${VAR_DIR}/.htaccess ${USR_VAR_DIR}/LiveSupport/htmlUI/var

View file

@ -1,3 +1,3 @@
<?php
header('LOCATION: /livesupport/htmlUI/var/html/ui_browser.php');
header('LOCATION: html/ui_browser.php');
?>

View file

@ -0,0 +1,3 @@
<?php
header('LOCATION: htmlUI/var/html/ui_browser.php');
?>

View file

@ -0,0 +1,3 @@
<?php
header('LOCATION: var/html/ui_browser.php');
?>