gpt4 book ai didi

asp.net - 配置 IIS 服务器以使用 Aurelia 框架和推送状态

转载 作者:行者123 更新时间:2023-12-04 01:54:01 25 4
gpt4 key购买 nike

我从 this repo 开始创建了一个基本的 aurelia 应用程序我试图摆脱 URL 栏中的 #(主题标签)。

我有 2 个项目,一个在一台机器上运行 WebApi,一个在另一台机器上运行一个空的 web 项目(不是 MVC)。关于 official documentation website它只说如何配置你的路由,但我的项目不是面向 MVC 的。

当我访问 http://localhost/home 时,如何从 Web.config 配置 IIS 服务器?它应该启动 aurelia 框架而不是 404 not found 页面?

最佳答案

我正在使用需要 web.config 来正确处理非哈希路由的 Azure,它只是将所有路由重定向到包含 aurelia 应用程序的 index.html。没有它(或类似的技术),它会给出 404。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<remove name="redirect all requests" />
<rule name="redirect all requests" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" pattern="" ignoreCase="false" />
</conditions>
<action type="Rewrite" url="index.html" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

希望这可以帮助。

关于asp.net - 配置 IIS 服务器以使用 Aurelia 框架和推送状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32114794/

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