Re: How do I server my app in apache in subdirectory?

2015-11-11 Thread frocco
Looks like it is working now. I tried localhost/mysite (which failed) this works localhost/mysite/admin On Tuesday, November 10, 2015 at 3:42:07 PM UTC-5, frocco wrote: > > I get a 404 error > > WSGIScriptAlias /mysite > C:/MAMP/htdocs/django/vnatracking/vnatracking/wsgi.py > > >> -- You

Re: How do I server my app in apache in subdirectory?

2015-11-10 Thread frocco
I get a 404 error WSGIScriptAlias /mysite C:/MAMP/htdocs/django/vnatracking/vnatracking/wsgi.py > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: How do I server my app in apache in subdirectory?

2015-11-10 Thread Fred Stluka
frocco, I've done exactly that. No problem. How does it fail? What it should be doing is redirecting any URLs like /mysite to the wsgi.py file so Django will handle them. What error or bad behavior do you see? --Fred

How do I server my app in apache in subdirectory?

2015-11-10 Thread frocco
Hello, In httpd.conf this works WSGIScriptAlias / C:/MAMP/htdocs/django/vnatracking/vnatracking/wsgi.py however if I change it to WSGIScriptAlias /mysite C:/MAMP/htdocs/django/vnatracking/vnatracking/wsgi.py it fails Instead of localhost, I want localhost/mysite Thanks -- You received