On Mon, May 3, 2010 at 5:07 AM, joesgroups <[email protected]> wrote: > Hi, > > I have been taking a look at the SimpleSite tutorial site for pylons > via the pylons book. I installed the SimpleSite template, created a > new project using > > $ paster create --template=simplesite mytestsite > > and booted up the sample code to take a look at the final result, and > although all the regular pages look fine, the default pylons welcome > page is stuck on localhost:5000 > > Usually this just requires removing the public/index.html static file > but in this case there is no static file... so is there anything else > that could be resulting in this? I'm tearing my hair out trying to > figure out why this is still popping up, and where it is being loaded > from.
If mytestsite/public/index.html is gone, the only explanation I can think of is browser caching. If you delete index.html but don't define a route for "/", you should get a 404 Not Found error. -- Mike Orr <[email protected]> -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
