Error Pages

So I recently set up my error pages. Every time I go to them it crashes and says, too many redirects. Im not sure what I can do to fix it.

@KevinIsPrettyDank said:
So I recently set up my error pages. Every time I go to them it crashes and says, too many redirects. Im not sure what I can do to fix it.

It means your error page also generates an error. Does the error page work if you visit it directly? If not, then you should fix the error page first.

`

Error 400

<img src=“error400.jpg” alt='Error400" height=“100%” width=“100%”>

`

This is all the code I have, I checked, the file(error400.jpg) is in the right spot, and the alt text isn’t showing up. I put Error 400 back up for now to test it out, not sure whats happening

The problem is the part you haven’t showed:

<html>
<head>
<title="ERROR400>
</head>

<body>

<img src="error400.jpg" alt='Error400" height="2880" width="1800">

</body>
</html>

The Title attribute is malformed, which is why the entire page can’t render properly.

Also, http://Error400.html is not a valid URL, which is why your .htaccess rule doesn’t work.

Alright! I got it set up. Thanks!