We have in a htaccess file:
ErrorDocument 404 /404.shtml
Which works to show the 404.shtml file. The problem is when someone types thedomain.com/folder1/folder2, it breaks the layout as the page is using relative paths rather than absolute. I know I could use absolute paths to fix this issue, but I am wondering if there is a way where it can actually change the path to the 404.shtml, so the relative paths can remain.
Thanks in advance.