如何使用iis url重写扩展名

时间:2015-04-07 09:17:18

标签: node.js iis web-config iis-8

我在IIS 8.0中使用节点js, 我在localhost中成功运行,但是当我尝试进入服务器时,我得到403 - 禁止访问:访问被拒绝。 然后我发现它必须使用url-rewrite扩展,所以我可以绕过权限。 但我得到500 - 内部服务器错误。

这是我的web.config

的示例
<configuration>
 <system.webServer>

  <handlers>
   <add name="iisnode" path="app.js" verb="*" modules="iisnode" />
   </handlers>

   <rewrite>
    <rules>
     <rule name="myapp">
      <match url="/*" />
      <action type="Rewrite" url="app.js" />
     </rule>
    </rules>
   </rewrite>

  </system.webServer>
</configuration>

我无法加载索引,只有hello world text

1 个答案:

答案 0 :(得分:0)

您确定已安装URL重写模块吗? http://www.iis.net/downloads/microsoft/url-rewrite