Sign in
eclipse
/
www.eclipse.org
/
rcptt
/
763c3a895de22fd922ab6d0839bb0101b0f8de1f
/
.
/
documentation
/
userguide
/
index.php
blob: 7e4d63cc54f03e16c22cdf868cb9d36ee5426ec9 [
file
] [
log
] [
blame
]
<?
php
/* Redirect to a different page in the current directory that was requested */
$host
=
$_SERVER
[
'HTTP_HOST'
];
$uri
=
rtrim
(
dirname
(
$_SERVER
[
'PHP_SELF'
]),
'/\\'
);
$extra
=
'getstarted'
;
header
(
"Location: http://$host$uri/$extra"
);
exit
;
?>