Issue #2548907 by nlisgo: Typo in 'Fast 404 pages' section of default.settings.php

8.0.x
Alex Pott 2015-08-11 09:19:45 +01:00
parent ef105e70b8
commit 690bbac896
1 changed files with 3 additions and 3 deletions

View File

@ -610,15 +610,15 @@ if ($settings['hash_salt']) {
*
* The options below return a simple, fast 404 page for URLs matching a
* specific pattern:
* - $conf['system.performance]['fast_404']['exclude_paths']: A regular
* - $conf['system.performance']['fast_404']['exclude_paths']: A regular
* expression to match paths to exclude, such as images generated by image
* styles, or dynamically-resized images. If you need to add more paths, you
* can add '|path' to the expression.
* - $conf['system.performance]['fast_404']['paths']: A regular expression to
* - $conf['system.performance']['fast_404']['paths']: A regular expression to
* match paths that should return a simple 404 page, rather than the fully
* themed 404 page. If you don't have any aliases ending in htm or html you
* can add '|s?html?' to the expression.
* - $conf['system.performance]['fast_404']['html']: The html to return for
* - $conf['system.performance']['fast_404']['html']: The html to return for
* simple 404 pages.
*
* Remove the leading hash signs if you would like to alter this functionality.