gpt4 book ai didi

node.js - 在azure上部署React应用程序

转载 作者:太空宇宙 更新时间:2023-11-03 23:00:50 25 4
gpt4 key购买 nike

我正在尝试在 Azure 上部署我的 React 应用程序。这是一个我已弹出的 create-react-app。我已经按照这篇文章来部署它。我已将构建文件和 web.config 添加到 azure 中的 site/wwwroot 中。当我访问我的 webapp url 时,我看到的页面显示“您无权查看此目录或页面。”

我在我的应用程序中使用客户端路由(react-router)。

这些是我的文件

网络配置

<?xml version="1.0"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="React Routes" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_URI}" pattern="^/(api)" negate="true" />
</conditions>
<action type="Rewrite" url="/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

这就是我的项目在 azure 上的样子

enter image description here

最佳答案

您需要转到应用程序设置并在虚拟应用程序中添加您的路径,如下所示:

enter image description here

关于node.js - 在azure上部署React应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48548024/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com