summaryrefslogtreecommitdiff
path: root/sites/default
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-09-30 15:00:38 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-09-30 15:00:38 -0700
commite120a6e886a40eaf135f6032aa47e3eeeb58b3af (patch)
treea5cff291469b3cda0204f79359d27f5aad6c33ec /sites/default
parentbd11d95c334a39fe6bf24c932c43f124b20ff139 (diff)
downloadbrdo-e120a6e886a40eaf135f6032aa47e3eeeb58b3af.tar.gz
brdo-e120a6e886a40eaf135f6032aa47e3eeeb58b3af.tar.bz2
Issue #76824 by geerlingguy, xjm, droplet, kbahey: Change notice for Drupal should not handle 404 for certain files.
Diffstat (limited to 'sites/default')
-rw-r--r--sites/default/default.settings.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php
index 32160598d..8479cf5d4 100644
--- a/sites/default/default.settings.php
+++ b/sites/default/default.settings.php
@@ -429,6 +429,42 @@ ini_set('session.cookie_lifetime', 2000000);
# );
/**
+ * Fast 404 pages:
+ *
+ * Drupal can generate fully themed 404 pages. However, some of these responses
+ * are for images or other resource files that are not displayed to the user.
+ * This can waste bandwidth, and also generate server load.
+ *
+ * The options below return a simple, fast 404 page for URLs matching a
+ * specific pattern:
+ * - 404_fast_paths_exclude: 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.
+ * - 404_fast_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.
+ * - 404_fast_html: The html to return for simple 404 pages.
+ *
+ * Add leading hash signs if you would like to disable this functionality.
+ */
+$conf['404_fast_paths_exclude'] = '/\/(?:styles)\//';
+$conf['404_fast_paths'] = '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i';
+$conf['404_fast_html'] = '<html xmlns="http://www.w3.org/1999/xhtml"><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>';
+
+/**
+ * By default, fast 404s are returned as part of the normal page request
+ * process, which will properly serve valid pages that happen to match and will
+ * also log actual 404s to the Drupal log. Alternatively you can choose to
+ * return a 404 now by uncommenting the following line. This will reduce server
+ * load, but will cause even valid pages that happen to match the pattern to
+ * return 404s, rather than the actual page. It will also prevent the Drupal
+ * system log entry. Ensure you understand the effects of this before enabling.
+ *
+ * To enable this functionality, remove the leading hash sign below.
+ */
+# drupal_fast_404();
+
+/**
* Authorized file system operations:
*
* The Update manager module included with Drupal provides a mechanism for