silverstripe-installer/index.html

17 lines
359 B
HTML

<html>
<!--
This simple page will redirect to check-php.php
check-php.php will either redirect to install.php or no-php.html, depending on whether PHP support
is installed
-->
<head>
</head>
<body>
<script>
window.location = 'check-php.php';
</script>
<noscript>
<a href="install.php">Click here to install</a>
</noscript>
</body>
</html>