Hi all,
I have researched this and have not found anyone with my issue.
I have designed all the pages of my site with a header and foot in php. Then I just do an include for them. The headers have includes for scripts and links to other files (DHMTL, etc). These all work great in any sub-directory from the root, but not the index.php in the root?
The includes directory is one level down from the root. I put "../" in the paths for all the header and footer info, and they work great. But the index.php in the root does not work. Here is the link to the root file.
Index file
My includes for the index.php (in the root) look like this:
<? include('includes/header.php'); ?>
Then the includes in the header files (the path is root/includes/header.php)
<? include('../includes/header_Scripts.shtm'); ?>
All the other links in the header.php and the header_Scripts.php use the same path reference.
Does that make sense?
Thanks in advance,
Don