在php文件中,我有这个常数:
define('login_location', $_SERVER["HTTP_HOST"].'/app/login.php');
当我从其他文件调用它时,进入根目录的子目录,例如/ sub /(如果使用的话)
require_once '../file_directory_constant_decalarated.php'; // the constant file .
header('Location: '.login_location);
这转到:
root/sub/root/app/login.php
我想去:
root/app/login.php
网络目录如下:
root
-file_directory_constant_decalarated.php
-/app/login.php
-/sub/file_with_header_location.php