Forum Moderators: phranque
php_value auto_prepend_file "header.inc" this is prepending to pages in the root, like
/index.php
/rootpage.php
etc
but when I request a page in a subdirectory such as /abc/index.php, I get this error:
Warning: Unknown: failed to open stream: No such file or directory in Unknown on line 0
obviously, it's looking for "/abc/header.inc" and it ain't there.
how do I syntax up my .htaccess to always get that included file from the root directory?
i tried
php_value auto_prepend_file "/header.inc"