12 lines
318 B
JavaScript
12 lines
318 B
JavaScript
const http = require("http");
|
|
|
|
http.createServer((req, res) => {
|
|
const host = req.headers.host || "";
|
|
console.log("working")
|
|
res.writeHead(301, {
|
|
"Location": `https://${host}${req.url}`
|
|
});
|
|
res.end();
|
|
}).listen(2000, () => {
|
|
console.log("🔁 Redirect server running on port 2000");
|
|
}); |