Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why would an aspx file return 404 ("The page cannot be found")

Tags:

asp.net

Why when I access an aspx (e.g., http://www.example.com/foo.aspx - not the real site) through IE6 would I get a 404 Error (i.e., "The page cannot be found") in IIS6

I've got scripts enabled for the website and I've tried with executables enabled as well.

Here is the full error:

The page cannot be found The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.  ------------------------------------------------------------------------------  Please try the following:  Make sure that the Web site address displayed in the address bar of your  browser is spelled and formatted correctly.  If you reached this page by clicking a link, contact the Web site  administrator to alert them that the link is incorrectly formatted.  Click the Back button to try another link.  HTTP Error 404 - File or directory not found. Internet Information Services (IIS)  ------------------------------------------------------------------------------  Technical Information (for support personnel)  Go to Microsoft Product Support Services and perform a title search for the  words HTTP and 404.  Open IIS Help, which is accessible in IIS Manager (inetmgr), and search for  topics titled Web Site Setup, Common Administrative Tasks, and About Custom  Error Messages.  

I can get to Default.htm in the same directory, so I know the path is right. I've opened it up to everyone (temporarily) so I know the permissions are right.

like image 955
BIBD Avatar asked Jan 21 '09 21:01

BIBD


People also ask

What does 404 File or directory not found mean?

One of the most common errors on the web — so common it's slipped into non-internet slang — is the 404 error. Also known by its longer name, "404 Page Not Found," this is an error that indicates that the page or resource you're looking for can't be found. This usually means that it's been deleted or moved.

What is error aspx?

If this attribute is present, when an unhandled exception occurs ASP.NET MVC will look for a view named Error. aspx in the controller's view folder. If it doesn't find one it then looks in the shared view folders. If you have default controllers in your project (ie.

What is 404 error asp net?

Best web development and SEO practices dictate that any webpage which does not exist, return an HTTP response code of 404, or Not Found. Basically, this response code means that the URL that you're requesting does not exist.


1 Answers

It could be a lot of things. I had this issue today because .NET had not been re-initialized after installing IIS (aspnet_regiis -i -enable or equivalent).

like image 167
Joe Avatar answered Oct 20 '22 11:10

Joe