2017-02-15 58 views

回答

0

只聽HTTPS請求與express,並添加一個簡單的HTTP服務器偵聽重定向像這樣:

let server = require('http'); 
 
server.createServer((req, res) => { 
 
    res.writeHead(302, { 
 
    'Content-Type': 'text/html', 
 
    'Location': 'https://' + req.headers.host + req.url 
 
    }); 
 
    res.end('<h1>Redirecting...</h1>'); 
 
}).listen(80);

```

相關問題