I want to make a directory under my Django app (the Sphinx documentation) available at a URL, but I'd like to add Apache Basic Authentication to it. How would I do that? Putting an .htaccess file in the directory doesn't seem to make a difference. asked 19 Feb '13, 11:48 tclancy |
You cannot add password protection to a static-only directory. If you need password protection, then use a static/cgi/php symlink instead. Hope that helps! answered 19 Feb '13, 12:22 seanf |