Files
EpiWebview/index.php
2025-10-09 12:14:29 +02:00

23 lines
379 B
PHP

<?php
require('config.php');
require('vendor/autoload.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0;url=dist/index.html">
<title>Epi Webview</title>
<script language="javascript">
window.location.href = "dist/index.php"
</script>
</head>
<body>
Go to <a href="dist/index.php">/dist/index.php</a>
</body>
</html>