# Summary

Fast 404

# Project URL

https://www.drupal.org/project/fast_404

# Where is the code?

git clone --branch 8.x-1.x http://git.drupal.org/project/fast_404.git

# Estimated completion date

Unknown

# Dependencies

Unknown

# Who's doing the port?

Unknown

# What help do they need?

Unknown

# D8 roadmap

Unknown

# Background and reference information

Unknown

Comments

visabhishek created an issue. See original summary.

Berdir’s picture

Status: Needs review » Needs work

There is only a dev, last updated a year ago. That almost certainly doesn't work right now. needs review would be if it would at least have an alpha release.

acbramley’s picture

It'd be worth noting the benefits of this module over core's implementation. They both use a similar method of fast 404ing, fast_404 reacts on KernelEvents::REQUEST vs core reacting on KernelEvents::EXCEPTION.

The advanced install with the fast404_preboot include also doesn't seem to be functioning in the alpha release.

MustangGB’s picture

Category: Task » Plan
mmjvb’s picture

Status: Needs work » Needs review
Wim Leers’s picture

It'd be worth noting the benefits of this module over core's implementation. They both use a similar method of fast 404ing, fast_404 reacts on KernelEvents::REQUEST vs core reacting on KernelEvents::EXCEPTION.

Indeed. I'd currently recommend against an extra module if there aren't any clear benefits.

mErilainen’s picture

But does Drupal core check anything else than missing files defined by the configuration fast_404.paths: '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i'?

From Fast 404 module:

* The second is to check whether or not the URL exists in Drupal by checking
* with the menu router, aliases and redirects. If the page does not exist, we
* will serve a Fast 404 error and exit.