I'm having a navigation problem with unique URLs that direct to a page that is below the organization structure of the navigation directory.
Example:
On the Chemical & Biomolecular Engineering website, I have the department navigation located at:
http://che.unl.edu/index-navigation.html
The navigation works fine while in a subdirectory, if the address is:
http://che.unl.edu/BioseparationsBiomaterialsGroup/
but...the lab has their own unique URL:
http://biomaterials.unl.edu/
using this URL, all of the navigation is broken because, the server side include doesn't find the nav file located in the directory above it.
Is is possible to use a server side include that uses an absolute URL? The current include doesn't allow absolute URLs.
so instead of using:
<!--#include virtual="/index-navigation.html" -->
is there an include or change that can be made so I could use an include that would be like:
<!--#include virtual="http://che.unl.edu/index-navigation.html" -->
