Root
/index.php ----//The homepage, including head.php works fine
/s/affiliate.php ----//A sub page, will not load the head.php
/structure/head.php
So the above is how its set out. I am trying to include head in pages across my website. I have hundreds of pages. It works fine on the index.php using
<?php include "structure/head.php"; ?>
However on any sub pages, it just doesnt load. I guess its the way it searches through directories but I have also tried to make it search from root and it still isnt working, any ideas?
<?php include( $_SERVER['DOCUMENT_ROOT'] . '/structure/head.php' ); ?>