1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 12:48:24 +01:00
This commit is contained in:
Cameron 2018-11-30 11:20:16 -08:00
parent 2486833451
commit d9eb9e4132

View File

@ -0,0 +1,40 @@
<?php
/*
* e107 Bootstrap CMS
*
* Copyright (C) 2008-2015 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
* IMPORTANT: Make sure the redirect script uses the following code to load class2.php:
*
* if (!defined('e107_INIT'))
* {
* require_once("../../class2.php");
* }
*
*/
if (!defined('e107_INIT')) { exit; }
// v2.x Standard - Simple mod-rewrite module.
class contact_url // plugin-folder + '_url'
{
function config()
{
$config = array();
$config['index'] = array(
'alias' => 'contact',
'regex' => '^{alias}\/?$',
'sef' => '{alias}',
'redirect' => '{e_BASE}contact.php',
);
return $config;
}
}