23 lines
379 B
PHP
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>
|