#13625: FORCE_SCRIPT_NAME bug
-------------------------------------+--------------------------------------
          Reporter:  liangent        |         Owner:  nobody
            Status:  reopened        |     Milestone:        
         Component:  Core framework  |       Version:  SVN   
        Resolution:                  |      Keywords:        
             Stage:  Unreviewed      |     Has_patch:  0     
        Needs_docs:  0               |   Needs_tests:  0     
Needs_better_patch:  0               |  
-------------------------------------+--------------------------------------
Changes (by liangent):

  * status:  closed => reopened
  * resolution:  worksforme =>

Comment:

 Zeus Web Server.

 Rewrite script was like:

 {{{
 match URL into $ with ^/path(.*)
 if matched
         set URL = /path/site.fcgi$1
 endif
 }}}

 I had to change it to the following to make it work:

 {{{
 match URL into $ with ^/path/?(.*)
 if matched
         set URL = /path/site.fcgi/$1
 endif
 }}}

 Other configurations guarantee that only {{{/path}}} and
 {{{/path/something}}} are dispatched here (ie. no {{{/pathsomething}}}).

-- 
Ticket URL: <http://code.djangoproject.com/ticket/13625#comment:2>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

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

Reply via email to