This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author agnosticdev
Recipients agnosticdev, oulenz
Date 2018-03-30.18:22:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1522434136.01.0.467229070634.issue33181@psf.upfronthosting.co.za>
In-reply-to
Content
I agree with you in regards to the statement, "Apache's redirect can be turned off, whereas this can't."  That is why my first thought would be to try and control this response to the client a bit better by providing a variable max-age.

self.send_header("Cache-Control", "max-age=xxx")

Removing the condition completely would be good idea as well, but would be my second course of action due to this functionality being in the Python code base for awhile now.

if os.path.isdir(path):
    for index in "index.html", "index.htm":
        index = os.path.join(path, index)
        if os.path.exists(index):
            path = index
            break


Those are my thoughts on the matter at least, possibly someone else in the community could weigh in as well?
History
Date User Action Args
2018-03-30 18:22:16agnosticdevsetrecipients: + agnosticdev, oulenz
2018-03-30 18:22:16agnosticdevsetmessageid: <1522434136.01.0.467229070634.issue33181@psf.upfronthosting.co.za>
2018-03-30 18:22:15agnosticdevlinkissue33181 messages
2018-03-30 18:22:15agnosticdevcreate