pokemon-showdown-client/pokemonshowdown.com/autodownload.php
Guangcong Luo 5d41f3ec93
Reorganize directories (#2187)
Files meant to be served have been moved into
`play.pokemonshowdown.com/` and `pokemonshowdown.com/`.

We now have three directories for the three subdomains handled by this
repo:

- `pokemonshowdown.com/`
- `play.pokemonshowdown.com/`
- `replay.pokemonshowdown.com/`

Naming them after the subdomains will make it much easier to tell where
the files for each go.

The diff is probably useless; it'll be easier if you just look at the
new tree:
https://github.com/smogon/pokemon-showdown-client/tree/reorganize
2023-11-16 03:39:29 -08:00

30 lines
539 B
PHP

<?php
include 'style/wrapper.inc.php';
$page = 'download';
$pageTitle = "Download";
$loc = '/files/PokemonShowdownSetup.exe';
if ($_GET['os'] === 'mac') $loc = '/files/pokemonshowdown-mac.zip';
includeHeaderTop();
?>
<meta http-equiv="refresh" content="1; url=<?= $loc ?>">
<?php
includeHeaderBottom();
?>
<div class="main">
<p>
Now downloading a pretty cool pokemon simulator... at least I think it's cool... <small><a href="<?= $loc ?>">(click if you're having trouble)</a></small>
</div>
<?php
includeFooter();
?>