如何获取htaccess中的当前父目录?当找到错误404时,我正在重定向页面...这是我的代码...
ErrorDocument 404 /sitewylog/www/404-redirect.php
但是当目录发生变化时,/ sitewylog / www / 404-redirect.php会转到/some-new-name/www/404-redirect.php,因为有人将我的副本拉到了另一个文件夹名称(例如,使用RapidSVN)..它产生一个错误,说404.html没找到..因为404-redirect.php包含这个代码......
<?php
include_once '../config.php';
header('Location: /'.ROOT.'/www/404.html');
exit;
?>