- www/www -> www/www.domain.de - www/api -> www/api.domain.de - www/game -> www/game.domain.de Each domain now has its own directory with public/ Document Root.
17 lines
307 B
PHP
17 lines
307 B
PHP
<?php
|
|
/**
|
|
* game.domain.de — Spielkomponente
|
|
*/
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>game.domain.de</title>
|
|
</head>
|
|
<body>
|
|
<h1>Game</h1>
|
|
<p>Spielkomponente.</p>
|
|
</body>
|
|
</html>
|