Not Found

The requested URL "@path" was not found on this server.

'; /** * By default we will show a super plain 404, because usually errors like this * are shown to browsers who only look at the headers. However, some cases * (usually when checking paths for Drupal pages) you may want to show a * regular 404 error. In this case you can specify a URL to another page and it * will be read and displayed (it can't be redirected to because we have to * give a 30x header to do that. This page needs to be in your docroot. * * Default value for this setting is FALSE. */ # $settings['fast404_HTML_error_page'] = './my_page.html'; /** * Default value for this setting is FALSE. This setting needs to be enabled, * so that fast 404 respects the redirect module. */ $settings['fast404_respect_redirect'] = TRUE; /** * Load the fast404.inc file. * * This is needed if you wish to do extension checking in settings.php. * * WARNING: This is not fully implemented and not ready to use. * @see: https://www.drupal.org/project/fast_404/issues/2961512 * */ # if (file_exists($app_root . '/modules/contrib/fast_404/fast404.inc')) { # include_once $app_root . '/modules/contrib/fast_404/fast404.inc'; # fast404_preboot($settings); # }