pokemon-showdown/static/index.html
Cathy J. Fitzpatrick f454177364 Changes to static file serving
- /static/custom.css is now located at /config/custom.css
- /static/avatars/ is now located at /config/avatars/
- The redirect script now redirects all room URIs, not just the root
  path. For example, if you are running a server on localhost port 8000,
  visiting http://localhost:8000/teambuilder will now take you to the
  teambuilder. This works for any room.
2013-04-24 20:41:49 -06:00

8 lines
396 B
HTML

<!DOCTYPE html>
<script>
var suffix = (document.location.port != '8000' ? '-' + (document.location.port || '80') : '');
document.location.replace('http://' + document.location.hostname + suffix + '.psim.us' + document.location.pathname);
</script>
<p>This is a <a href="http://www.pokemonshowdown.com">Pokemon Showdown</a> server!</p>
<noscript><p>Try enabling JavaScript to play!</p></noscript>