646 questions
0 votes
0 answers
33 views
Is it possible to prevent Nextjs from creating pages with 404 content in the production?
Our Next.js project (v15) has a problem. We are using the ISR to create pages on demand, however in practice, it may have some broken URLs and display 404 content. In the production environment, we ...
0 votes
0 answers
34 views
CustomError Mode off not showing detailed error message in ASP.NET MVC
On localhost I have set custom error mode off in web.config. There is no Application_Error method in global.asax. I have also commented HandleErrorAttribute in filter.config, but still I am not ...
1 vote
1 answer
149 views
NGINX error page using SSI include returns incorrect value for variables
When using the include command in SSI in an NGINX config, the $status variable will always return 200 (and any maps using $status also return whatever value is mapped to it) instead of the actual ...
0 votes
1 answer
432 views
My Nuxt webapp pages are flagged as Soft 404 on google search console despite pages exist
Versions Nuxt: v3.14.1592 Node: v20.10.0 Reproduction https://iptvlandbox.com/ nuxt.config.js: import { resolve } from "path"; export default defineNuxtConfig({ compatibilityDate: &...
0 votes
0 answers
40 views
How can I change jetty default 405 error page?
I need to change the default Jetty error page (specifically I want to remove the part where the requested URI appears in the html response), I tried several things but it does not seem to work. I ...
0 votes
1 answer
118 views
Razorpages - Custom 500 Error Page Not Displaying Even though 403 and 404 pages do
I am trying to implement the following custom error pages in ASP.NET Razor Pages (.Net 8.0): 403 Forbidden 404 Not Found 500 Server Error My error pages are RazorPages pages within a directory ...
0 votes
0 answers
34 views
ASP.NET MVC custom errors with areas
If I set custom errors in the main web.config like this: <customErrors mode="On"> <error statusCode="404" redirect="~/Home/NotFound"/> </customErrors&...
0 votes
1 answer
72 views
IIS fail to serve custom error pages when .NET app fails on SQL connection
I would appreciate any help in this case. I have a .NET Framework 4.5.1 web app running on IIS. I have two physical files in the root of this app: Error404.html Error500.html In the web.config under &...
0 votes
1 answer
203 views
Adding custom 404 error page in ASP.NET Core 6 MVC project integrated with Identity
I'm working on an ASP.NET Core 6 MVC project integrated with the identity for user management. In the Identity, the AccessDenied page exists by default for 301 error. I want to add a custom 404 error ...
1 vote
0 answers
42 views
Error 404 redirect not working in Django and static files not showing in edge
I am developing a single page webapp where I am trying to configure the error page if page not found so I have added proper settings but still my redirect not working on error page. Here is my ...
0 votes
1 answer
107 views
I have an HTML iframe issue in which I am trying to fix with CSS
i have tried a couple of fixes and even turned to chatGPT-4o (right after i looke on the internet and docs) I want to get this to be my error page which i redirect from a page i am fixing to ensure ...
1 vote
1 answer
606 views
not-found.tsx page in the context of multiple root layout.jsx in Next JS
I hope someone might be able to help. I have this page structure in my NextJS 14 app: app/ (admin)/ layout.tsx (web)/ layout.tsx page.tsx not-found.tsx Note that ...
0 votes
2 answers
207 views
Disabling custom error pages in Tomcat 9 based appservice on Azure
I have a Tomcat 9 based app service on Azure (see my stack attached) that has an in-out of season usage pattern and I need to swtich it to a lower app service plan for the summer. The app has been ...
0 votes
1 answer
462 views
Why does my Nuxt application redirect to my hosting provider's 404 page and not my custom error.vue page?
I have a created my personal online portfolio using Nuxt 3 and when I intentionally enter an invalid URL in the development environment, my custom 404 page is displayed. However, after deploying my ...
0 votes
0 answers
63 views
Background image not rendering in custom 404 page
I'm trying to set up a custom 404 error page in my Django project. The page renders correctly, but the background image is not showing up. I've ensured that the file name is correct and that it's ...