我有一个棱角分明的应用程序。在开发过程中一切正常,但是在构建后,我遇到了如下所述的错误:
我有一条通往'/ profile'的路线
如果我直接点击该URL,则显示“未指定输入文件”。在我的宅基地上,并在生产服务器上显示“ 500内部服务器错误”
但是,如果我通过单击链接导航至该网址,则效果很好,并且可以很好地显示“ / profile”页面。
import { Routes } from '@angular/router';
import { ProfileComponent } from './profile.component';
export const PagesRoutes: Routes = [
{
path: 'profile',
component: ProfileComponent
}];
我真的不知道问题可能出在哪里。在开发过程中效果很好
答案 0 :(得分:0)
我按照@Hussein的建议编辑了.htaccess
,使它正常工作
将此行ErrorDocument 404 /index.html
添加到.htaccess
文件中