I'm deploying my Django app on Apache using mod_wsgi.

The app is using a non-root mount point.

So instead of accessing it as:
http://server.com/

I access it as:
http://server.com/myapp/

When I navigate to a url that requires logging in, I get redirected, but my
mount point is dropped, e.g.:
http://server.com/accounts/login/?next=/articledist/publish/

But I should be redirected to:
http://server.com/myapp/accounts/login/?next=/articledist/publish/

If I manually navigate to the correct url it comes up. I'm even able to
login correctly.
However, this is obviously not an acceptable solution.

Why is this happening?

Jacob

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to