So my current situation is that I want to set up a folder under my htdocs folder (let’s call it company) where I will store all of my company’s current content that is used to serve their website. The issue is that the links in the html pages are currently based on root index (/) whereas all of my folders needed for the pages including images, css are in /company. What is the best way to address this issue so that I do not need to change the links in every single html document to development url, then back to production url?
Thanks!
To clarify, all the pages are static html pages, and I use a simple text editor. I am not a web designer, I am just a web developer who needs to quickly edit some my company’s web pages to add/edit content and I am looking to do this as quickly as possble. I was hoping for an apache configuration option or something to that effect, but thanks to all for the answers.
I ended up making a virtual host in the apache httpd.conf file which would make the document root for files in my /company folder /company instead of / . Worked like a charm.