Appscan在我的应用程序中使用url https://10.106.215.110/manager 调用了api,其中403拒绝访问。 现在我想将此消息更改为404。
任何人都可以指导我。提前谢谢。
PS我在这个主机名中运行了两个应用程序。我使用tomcat作为服务器,我不想在tomcat中更改任何内容。
答案 0 :(得分:1)
如果您不想在tomcat中更改任何内容,可以在代码中更改状态代码。
public void sendError(int code,String message) sendError方法发送状态代码(通常为404)以及在HTML文档中自动格式化并发送到客户端的短消息。
如果是Java代码,请参考以下链接: http://www.informit.com/articles/article.aspx?p=29817&seqNum=7
在PHP中也有方法。
int http_response_code([int $ response_code])
您可以在php文档手册中找到有关此方法的更多信息。