On my hosted server, the files are located here:
/usr/home/user1/public_html
I have to access the files using something like this: http://server1.example.com/user1/
However, all my files use absolute paths to reference CSS / Images / JS files.
So, my requests for these assets look like this:
http://server1.example.com/images/homepage/ver2/logo-black.png
Yet, they are not found because they live here:
http://server1.example.com/user1/
How do I tell Apache to use this path to look for files. Thanks.