Skip to content
Snippets Groups Projects
Commit 7a173908 authored by bcweaver's avatar bcweaver
Browse files

Add support for a site-specific redirects file

parent 91e29f27
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,14 @@
include $local_settings;
}
/**
* Site-specific redirects
*/
$redirects_file = __DIR__ . "/redirects.php";
if (file_exists($redirects_file)) {
include $redirects_file;
}
/**
* Always install the 'standard' profile to stop the installer from
* modifying settings.php.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment