refinement: Redirect old contact to new
diff --git a/contact/_index.html b/contact/_index.html
deleted file mode 100644
index 3d3c3d1..0000000
--- a/contact/_index.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-<head>
-<title>OSEE Contacts</title>
-<meta http-equiv="refresh" content="2; URL=https://projects.eclipse.org/projects/technology.osee/who">
-<meta name="keywords" content="automatic redirection">
-</head>
-<body>
-If your browser doesn't automatically go there within a few seconds,
-you may want to go to
-<a href="https://projects.eclipse.org/projects/technology.osee/who">Contacts</a> manually.
-</body>
-</html>
diff --git a/contact/index.php b/contact/index.php
deleted file mode 100644
index 242ecd7..0000000
--- a/contact/index.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
- require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
- require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
- require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
- $App = new App();
- $Nav = new Nav();
- $Menu = new Menu();
- include($App->getProjectCommon());
- include("../sharedEnv.php");
-
- #*****************************************************************************
-
- $pageTitle = "OSEE - Contacts";
- $pageKeywords = "OSEE, Open, System, Engineering, Environment, Eclipse, Define, ATS, OTE, Application Framework";
- $pageAuthor = "Donald G. Dunne";
-
- #*****************************************************************************
-
- $html = '<div id="midcolumn">';
- $html .= file_get_contents('_index.html');
- $html .= "</div>";
-
- # Generate the web page
- $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>