我试图使用iisnode运行express。我按照提供的示例进行了操作,但在尝试使用最新的Express版本时,没有办法使用它。
我收到错误Cannot GET /node/parislight/hello.js
和其他时间,只有The webpage cannot be found
。
我创建了一个hello.js
文件(主要快速文件)取自the express docs。
var express = require('express')
var app = express()
app.get('/', function (req, res) {
res.send('Hello World!')
})
var server = app.listen(process.env.PORT, function () {
var host = server.address().address
var port = server.address().port
console.log('Example app listening at http://%s:%s', host, port)
})
我添加了必要的web.config
文件(从iisnode中的express示例中提取)
<configuration>
<system.webServer>
<!-- indicates that the hello.js file is a node.js application
to be handled by the iisnode module -->
<handlers>
<add name="iisnode" path="hello.js" verb="*" modules="iisnode" />
</handlers>
<!-- use URL rewriting to redirect the entire branch of the URL namespace
to hello.js node.js application; for example, the following URLs will
all be handled by hello.js:
http://localhost/node/express/myapp/foo
http://localhost/node/express/myapp/bar
-->
<rewrite>
<rules>
<rule name="myapp">
<match url="myapp/*" />
<action type="Rewrite" url="hello.js" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
我为IIS中使用的App Pool提供了所有必要的权限。
答案 0 :(得分:4)
需要使用完整路径:
app.get调用中指定的路径必须是请求的完整路径。
现在看起来像这样:
{{1}}
通过以下方式加入:
答案 1 :(得分:3)
您可以在文件末尾使用catch all功能获取任何网址并发送200响应或发送您的特殊404页面。注意:展示位置必须在所有其他指定的网址之后。
app.get('*', function (req, res) {
res.send('Hello World!')
})