410 is a standard HTTP status code indicating that a requested resource is no longer available at the server and no forwarding address is known.
Questions tagged [http-status-code-410]
94 questions
0
votes
1 answer
IIRF - How to send a 410 Gone response
I am trying to use IIRF (Ionics Isapi Rewrite Filter V 2.1) to send a 410 Gone [G] response for URLs that contain the following string, but am very new to IIRF and regular expressions so a little lost as to how to properly form the rule.
I want to…
0
votes
1 answer
How to get an error page for a 410 http status code in Django?
I have some redirects for URLs that are no longer valid so I need them to return a 410. Because the URLs are from an older version of the website (with a completely different system) I simply put them in the redirects app for easier editing. However…

Semmel
- 2,526
- 3
- 21
- 30
-1
votes
5 answers
PHP redirect page with status code problem
I am trying to redirect a page using HTTP 410 status using php header function as
header("HTTP/1.1 410 Gone");
header('Location: http://domain.com/down.php');
exit;
The problem is that even if I set a 410 status code...the status code will…

Nilesh
- 1,047
- 1
- 12
- 20