Pretty easy one:
I want to use a php include for the nav on all 20 or so pages of my site, that way I can edit just one file if want to add a button or something.
Trouble is, some pages are one level deeper in a directory which means all the relative links break.
I'd use absolute links, but then I can't test locally unless I first change all the links in the nav file.
So my question is, how do you create a simple nav file that works from any directory on the site, both locally and live. Ideally I'd like to use absolute links referenced from the top of the site. Any thoughts?
Are there any negative side effects to using BASE HREF? Okay for search engines?