.aspx is NOT ASP it is ASP.NET and, index files is an Apache term, the equivalent IIS term is default document
IIS webservers have a document list that they will search for in sequence when finding a page to serve out for a URI when no page name is specified. The standard default document for .net scripts is default.aspx, index.aspx is not in the standard list of documents to be searched for so unless you have added it specifically, it won't be found.
Either;
Rename your page to default.aspx, (Recommended)
Add index.asp(x) to the document list; (If you have access)
Always use the document name in the URIs; (Not recommended at all. Just here to cover all options.)
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
Last edited by chrishirst; 08-31-2008 at 06:34 AM..
|