gpt4 book ai didi

angular - 刷新页面时显示找不到页面

转载 作者:可可西里 更新时间:2023-11-01 10:10:54 25 4
gpt4 key购买 nike

我开发了 Angular 7 应用程序。我想在普通的 Windows 7 桌面上托管(它没有安装 IIS)。当我刷新页面/路由时,它说

"404 Not Found - The requested URL was not found on the server". enter image description here

我不想使用"HashLocationStrategy"

我尝试如下创建 web.config 并添加到项目文件夹中

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="AngularJS" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="http://localhost/sp/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

在上面的代码中,我尝试将重写 URL 保留为“/”但没有帮助我仍然遇到同样的错误。

我的index.html页面

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8" />
<title>Title</title>

<base href="./" />

<meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />

<link rel="icon" type="image/png" href="assets/icon/favicon.png" />

<!-- add to homescreen for ios -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="stylesheet" href="styles.30b5b974b5c7cd59b7d1.css"></head>

<body>
<app-root></app-root>
<script type="text/javascript" src="runtime.2ec62019cc97e19fb61f.js"></script><script type="text/javascript" src="polyfills.b7025f5354b70ae0544f.js"></script><script type="text/javascript" src="scripts.ccb1b8327b72db7af87a.js"></script><script type="text/javascript" src="main.1d9ddad52d76d8c93cdd.js"></script></body>

</html>

我除了刷新后页面重新加载,但我收到 404 错误

你能帮我解决这个问题/如何配置 web.config。提前致谢

最佳答案

index.html中:

<base href="/">

web.config 中:

 <action type="Rewrite" url="/" />

应该可以。

关于angular - 刷新页面时显示找不到页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56490494/

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