我正在尝试将PHP应用程序移植到node / express。
现在我面临的问题是提供一些遗留链接,如www.example.com/test.php
我从快递中得到以下错误:
Cannot GET /test.php
如何使用express / node提供.php
路由?
谢谢你的帮助!
答案 0 :(得分:1)
您可以将/test.php作为任何其他网址收听:
app.get('/test.php',function(req,res){
res.redirect('/YourNewRouter')
})