So I have a website.
www.example.com directory pointed at /var/www/html/
I can load a webpage at
www.example.com/foo/
The file for that page is at
/var/www/html/foo/index.html
that index.html has a style sheet and object in the foo folder and tries to request it using
www.example.com/foo/bar.css
However, bar.css
returns 404 not found even though it's at
/var/www/html/foo/bar.css
What gives? The files have 644 user rights. If index.html can be found shouldn't the other files be too?