Hi, i was trying to think about how i can make so every vhost can have different 404 error page. Does anywhon have a idéa about how i can achive this?
You can specify the 404 error page in each vhost, e.g. Code: ErrorDocument 404 /error/fileNotFound.html (where /error/fileNotFound.html is relative to that web site's document root; if the document root is /var/www for example, the absolute path to the error page would be /var/www/error/fileNotFound.html). Now you can put different HTML code into each of your fileNotFound.html files.