My brother and I are using Dropbox as a means of sharing our website projects. I put a small html page in the main folder that contains this:
<a href="project1/index.php">Project 1</a><br />
<a href="project2/index.html">Project 2</a><br />
<a href="project3/index.html">Project 3</a><br />
Using WAMP, I set localhost to this page so I can conveniently access all of our projects this way. Here's my problem:
These links only work because the directory is specified. Within these pages, the navigation links don't specify the directory, so it links to "localhost/about.php" rather than "localhost/project1/about.php". Using "file:///C:/ ... " would not work, as WAMP would no longer run the php.
I wasn't sure how to search for solutions to this problem, since I don't know the technical name for a "table of contents" as I'm calling it. After searching for variations of the issue, however, I think it may be possible to rig up something with htaccess. Thanks for taking the time to read my question!