Re: Django on a non root Apache URL

2008-02-18 Thread Graham Dumpleton
On Feb 19, 3:36 am, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Mon, 2008-02-18 at 07:09 -0800, [EMAIL PROTECTED] wrote: > > Hi, > > > that won't do it when I do something like: > > return HttpResponseRedirect('/') > > > What I want is to be able to do the command above and I'll get to

Re: Django on a non root Apache URL

2008-02-18 Thread Malcolm Tredinnick
On Mon, 2008-02-18 at 07:09 -0800, [EMAIL PROTECTED] wrote: > Hi, > > that won't do it when I do something like: > return HttpResponseRedirect('/') > > What I want is to be able to do the command above and I'll get to the: > http://localhost/django > > Instead of http://localhost/ . > > >

Re: Django on a non root Apache URL

2008-02-18 Thread Eric Abrahamsen
On Feb 18, 2008, at 11:09 PM, [EMAIL PROTECTED] wrote: > > Hi, > > that won't do it when I do something like: > return HttpResponseRedirect('/') > > What I want is to be able to do the command above and I'll get to the: > http://localhost/django > > Instead of http://localhost/ . > > > Is there

Re: Django on a non root Apache URL

2008-02-18 Thread [EMAIL PROTECTED]
Hi, that won't do it when I do something like: return HttpResponseRedirect('/') What I want is to be able to do the command above and I'll get to the: http://localhost/django Instead of http://localhost/ . Is there a way to do this? Thanks, On Feb 18, 2:43 pm, Eric Abrahamsen <[EMAIL

Re: Django on a non root Apache URL

2008-02-18 Thread Eric Abrahamsen
On Feb 18, 2008, at 10:06 PM, [EMAIL PROTECTED] wrote: > > Hi, I want to deploy a Django project on Apache but in a URL like: > http://localhost/django > > I can do it but since I have some HttpResponseRedirect on my project > pointing to '/', it will end up on: > http://localhost/ > > Is there

Django on a non root Apache URL

2008-02-18 Thread [EMAIL PROTECTED]
Hi, I want to deploy a Django project on Apache but in a URL like: http://localhost/django I can do it but since I have some HttpResponseRedirect on my project pointing to '/', it will end up on: http://localhost/ Is there any way to make django to use the http://localhost/django URL as its