mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
17 lines
359 B
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>
|