-Karl- Posted June 15, 2010 Share Posted June 15, 2010 Okay, this isn't exactly a PHP problem, but it relates to PHP. I have my .htaccess file: ErrorDocument 400 /errordocs/error400.php ErrorDocument 401 /errordocs/error401.php ErrorDocument 403 /errordocs/error403.php ErrorDocument 404 /errordocs/error404.php ErrorDocument 500 /errordocs/error500.php This works fine if a user goes to www.mywebsite.com/pagethatdoesntexist.php, however, it doesn't if they go to www.mywebsite.com/hello/pagethatdoesntexist.com. Well, it attemps to work but the images aren't loaded, as the PHP files point to a specific folder www.mywebsite.com/images, so if a user goes into another directory it will try to find the images folder in there. How can I make it get the images from the correct directory, no matter which other directory the user is in? Link to comment https://forums.phpfreaks.com/topic/204797-custom-error-pages-htaccess/ Share on other sites More sharing options...
cags Posted June 18, 2010 Share Posted June 18, 2010 Use full paths for the images used within the error documents. I.e. /images/blah.jpg # rather than image/blah.jpg Link to comment https://forums.phpfreaks.com/topic/204797-custom-error-pages-htaccess/#findComment-1074030 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.