Hallo,
Ian hat gesagt: // Ian wrote: > under public_html i have a directory MyContext and i also have a directory > i created called test. Inside test i have a file called test.psp which is > basically just a hello world page. > > If i go to the url server/~merk/test/test.psp it instead pulls up the page > in MyContext/Main.py > > If i go to the url server/~merk/test/test.psp/test/test.psp then i get my > test page. > > Actually, if i go to server/~merk/test/anything.psp/test/test.psp i get my > test page as well. > > Can someone give me a clue what i am doing wrong here? Because i'm pretty > sure i'm totally clueless now ;p
You have activated the "ExtraPathInfo" setting, right? This has subtle effects on handling of Contexts, of which the most subtle is, that it is better to include Context- and Servlet-name in a request.
So http://server/~merk/MyContext/test/test/ should work and show the same as http://server/~merk/MyContext/test/test.psp or http://server/~merk/MyContext/test/test.psp/
ciao -- Frank Barknecht _ ______footils.org__
Actually, ExtraPathInfo is set to 0 right now, so its not activated,
basically, what i would like to do is the following:
public_html is my root directory for any web pages. going to http://servver/~merk/ will pull up the index.html page in that directory. If instead i go to server/~merk/somepage.psp then it will pass the request over to the app server. I want to have one directory and any number of sub directories under it where i can server either html or psp pages out of them. What would be the correct setup for doing this?
ian
------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
