Skip to content
Snippets Groups Projects
Unverified Commit dc4b5cfb authored by briancanini's avatar briancanini Committed by GitHub
Browse files

Merge pull request #129 from ASCWebServices/redirects

Add support for a site-specific redirects file
parents 91e29f27 7a173908
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