我已经建立了Angular项目并将dist文件夹发送到另一台计算机。然后,我尝试按照this answer运行它。
我有这个:
但是当转到指定的地址或本地主机时,它会给出无效的重定向错误,并且不会加载任何页面。
更新
index.html:
<html>
<head>
<base href='/'>
<meta charset="utf-8" />
<link rel="apple-touch-icon" sizes="76x76" href="./assets/img/apple-icon.png" />
<link rel="icon" type="image/png" href="./assets/img/favicon.png" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title></title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<meta name="viewport" content="width=device-width" />
<!-- Fonts and icons -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,700,300|Material+Icons' rel='stylesheet' type='text/css'>
</head>
<body>
<app-root>
<div class="loader">
<svg class="circular" viewBox="25 25 50 50">
<circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10" />
</svg>
</div>
</app-root>
</body>
</html>
我只需执行ng build
,然后执行上面链接的答案中提供的说明。
修改
我尝试设置
<base href='./heliosFrontEnd_admin/dist'>
dist的index.html中的,但没有起作用。