2001-03-10 11:07:52 +00:00
|
|
|
<?php
|
2000-05-18 19:51:59 +00:00
|
|
|
|
2004-08-21 06:42:38 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* The PHP page that serves all page requests on a Drupal installation.
|
|
|
|
*
|
2007-12-26 08:46:48 +00:00
|
|
|
* All Drupal code is released under the GNU General Public License.
|
2011-10-31 04:05:57 +00:00
|
|
|
* See COPYRIGHT.txt and LICENSE.txt files in the "core" directory.
|
2004-08-21 06:42:38 +00:00
|
|
|
*/
|
|
|
|
|
2013-03-17 06:36:36 +00:00
|
|
|
require_once __DIR__ . '/core/includes/bootstrap.inc';
|
2013-05-19 19:32:09 +00:00
|
|
|
try {
|
|
|
|
drupal_handle_request();
|
|
|
|
}
|
|
|
|
catch (Exception $e) {
|
|
|
|
print 'If you have just changed code (for example deployed a new module or moved an existing one) read http://drupal.org/documentation/rebuild';
|
|
|
|
throw $e;
|
|
|
|
}
|