I have a static HTML web page and I want to set its status code to 404
"Not found".
But, I want to do this using javascript or jQuery, not any server side language.
How can I do this on the client? With javascript or maybe a <meta>
tag?
I have a static HTML web page and I want to set its status code to 404
"Not found".
But, I want to do this using javascript or jQuery, not any server side language.
How can I do this on the client? With javascript or maybe a <meta>
tag?
It is impossible to set the HTTP Response code using client side programming.
You can redirect the page to a non existent one in JavaScript. I have no idea why you would want to do this, but hey ho:
<script type="text/javascript">
<!--
window.location = "zomgomgthispagedoesntexistlololol.html"
//-->
</script>
But David is right, there is no way to set THAT pages status as it is a client side script.
I think the sense behind this exercise is the following: You want to load a page that displays a custom error message to your users. At the same time you want to tell your Google Search Appliance (or alike systems) that the requested page must be deleted from the index. I have the same problem where server-side scripts cannot be embedded. I haven't found a client-side solution yet.
You set redirection for non-existant pages on the server. You will not have a page to work with in the browser, since the page the user requested does not exist.
In ASP.NET you can set up a default page in the customErrors section of the web.config file like this:
<customErrors mode="RemoteOnly" defaultRedirect="~/error.aspx">
<error statusCode="404" redirect="notFound.aspx"/>
<error statusCode="403" redirect="accessError.aspx"/>