mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
62076389c3
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@39713 467b73ca-7a2a-4603-9d3b-597d59a354a9
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> |