Skip to content

Instantly share code, notes, and snippets.

View lightmnd's full-sized avatar

lightmnd lightmnd

View GitHub Profile
@lightmnd
lightmnd / redirect.js
Created December 14, 2016 13:35 — forked from alireza-ahmadi/redirect.js
A simple Node.js solution for 301 redirect
var http = require('http');
var server = http.createServer(function(req, res){
res.writeHead(301, {'Location' : 'http://www.example.com'});
res.end();
});
server.listen(process.env.PORT || 3000);