• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

i have HTTP Status 404 problem, but create new file work fine.

 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Why my jsp page will occur

HTTP Status 404 - /SIGNIN/REGISTER.jsp
type Status report
message /SIGNIN/REGISTER.jsp
description The requested resource is not available.

If i create a new file and save with a different name it will work fine. How come.
Now register.jsp will occur  HTTP Status 404.
If i copy the source code of register.jsp and create a new file called 12345.jsp it will work fine with 12345.jsp

Do anyone know what's the reason with it.


 
Saloon Keeper
Posts: 7585
176
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
URLs are case sensitive. REGISTER.jsp is not the same as register.jsp.
 
chenchih lee
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i mean REGISTER.jsp.
My web file is REGISTER.jsp and i type http://localhost:9090/SIGNIN/REGISTER.jsp, it will occur HTTP Status 404
 
chenchih lee
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I try if you copy the file to a new folder it will not work .
Why is that?
for  example if i create a directory /aa/REGISTER.jsp ==>ok
then create another directory bb, and copy REGISTER.jsp to /bb, then http://localhost:9090/bb/REGISTER.jsp ==>will not work, it will occur  HTTP Status 404
 
You can thank my dental hygienist for my untimely aliveness. So tiny:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic