重定向到404正常,但是在chrome devtools中,显示了200个代码

时间:2019-02-05 20:06:23

标签: iis coldfusion web-config coldfusion-10

我的web.config看起来像这样:

<configuration>
    <system.webServer>
        <httpErrors>
            <remove statusCode="404" subStatusCode="-1" />
            <error statusCode="404" prefixLanguageFilePath="" path="/error-404.cfm" responseMode="ExecuteURL" />
        </httpErrors>
    </system.webServer>
</configuration>

如果我导航到一个不存在的页面,它将正确加载404页面,但是chrome的网络日志显示200响应。如何确定收到404响应?还是有关系吗?

1 个答案:

答案 0 :(得分:3)

对于遇到类似问题的任何人,这对我都有效;放

import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { AppComponent } from './app.component'; import { HelloComponent } from './hello.component'; @NgModule({ imports: [ BrowserModule, FormsModule ], declarations: [ AppComponent, HelloComponent ], entryComponents:[HelloComponent], bootstrap: [ AppComponent ] }) export class AppModule { }

在application.cfc文件中,然后放入

entryComponents位于error-404.cfm的顶部