从 django 中的 urls.py 中排除路径

发布于 2024-07-30 09:58:47 字数 173 浏览 2 评论 0原文

我已将 django.root 设置为斜杠后面的 url 中的根路径。 但我想在根 url 的子文件夹中有一个下载对话框,该对话框不应被 urls.py 访问。 是否有可能避免访问 urls.py 并使用 apache 配置的位置。 抱歉,这个问题很棘手,我希望你能理解我的问题。

谢谢并问候,托皮尔

I have set django.root to the root path in the url after the slash. But I want to have a download dialog in a subfolder of the root url which should not be accessed by urls.py. Is there any possibility to avoid access on urls.py and use instead the location of the apache configuration. Sorry, but this problem is very tricky and I hope you can understand my problem.

Thanks and greetz, thopil

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

她说她爱他 2024-08-06 09:58:47

AutomatedTester 是正确的,这更多的是 Apache 配置而不是编程问题。

无论如何,这取决于您的 django 代码的执行方式(mod_pythonmod_wsgi)。 通常,Apache Alias 就可以解决这个问题(这就是我使用 mod_wsgi 实现的方法)。 例如:

Alias /download /path/to/non-django/download/code

希望这有帮助。

AutomatedTester is correct, this is more a Apache configuration than a programming question.

Anyway, it depends on how your django code is executed (mod_python, mod_wsgi). Usually, an Apache Alias would do the trick (that's how I am doing it with mod_wsgi). For example:

Alias /download /path/to/non-django/download/code

Hope this helps.

独闯女儿国 2024-08-06 09:58:47

既然您用 mod-python 标记了它,那么这显然是您的部署方法。 阅读相关文档

tl;dr 版本:

<Location "/media">
    SetHandler None
</Location>

Since you tagged it with mod-python, it's obviously your deployment method. Read the related docs.

The tl;dr version:

<Location "/media">
    SetHandler None
</Location>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文