In WAMP we have a "Your Projects" section. When you add a folder to your "www" folder, the new folder is automatically detected and you can click on it to open it as if it was a running website. The server my website is hosted on gives us access higher than the "www" level, so if you do a $_SERVER['DOCUMENT_ROOT']
it points to a directory a couple levels above where our actual index.php lives.
I want to keep the configure.php as close to the actual server set up as possible, so if $_SERVER['DOCUMENT_ROOT']
points to the directory 2 levels above where the actual index.php is, that is how I would like to have it in WAMP as well so there is less tweaking when it goes back on the server.
Out of the box, WAMP points to the parent directory of the website and you need to follow a few links to open the actual website (in my case you click "honu" then "httpdocs", and then the page loads.)
I only need it for that one particular website, so I am not looking for a "hosts" change. (I changed "hosts" to point to 127.0.0.1 for a variety of names, but this only helps to get to the "localhost" location when you type the URL in a browser. I have DocumentRoot "C:\wamp\www\honu\httpdocs"
set in httpd-vhosts.conf and this doesn't change the link in the "Your Projects" section.
Is there a place to configure the "Your Projects" to point one particular project to localhost/subfolder/subsubfolder/
?