The documentation of the module sets an example of paths that will be whitelisted as:

# Array of whitelisted files/urls. Used if whitelisting is set to TRUE.
$conf['fast_404_whitelist'] = array('index.php', 'rss.xml', 'install.php', 'cron.php', 'update.php', 'xmlrpc.php');

But those paths will not match the return of $path = parse_url('http://example.com' . $uri, PHP_URL_PATH); as parse_url returns the paths with prefix / such as /index.php, /update.php and so on.

The information in the README.TXT file must be updated accordingly.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

kurkuma created an issue. See original summary.

kurkuma’s picture

kurkuma’s picture

Status: Active » Needs review