Skip to content

Instantly share code, notes, and snippets.

@spotco
Created January 18, 2020 08:14
Show Gist options
  • Save spotco/b984670b4b99bed3dea18acf46ffd640 to your computer and use it in GitHub Desktop.
Save spotco/b984670b4b99bed3dea18acf46ffd640 to your computer and use it in GitHub Desktop.
robeats.net.js
//forever start redirect.js
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(301, { "Location": "https://www.roblox.com/games/698448212/UPDATE-Club-RoBeats-MMO-Rhythm-Game" });
res.end();
}).listen(80);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment