从 django 中的 urls.py 中排除路径
我已将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
AutomatedTester 是正确的,这更多的是 Apache 配置而不是编程问题。
无论如何,这取决于您的 django 代码的执行方式(
mod_python
、mod_wsgi
)。 通常,Apache Alias 就可以解决这个问题(这就是我使用mod_wsgi
实现的方法)。 例如:希望这有帮助。
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 withmod_wsgi
). For example:Hope this helps.
既然您用 mod-python 标记了它,那么这显然是您的部署方法。 阅读相关文档。
tl;dr 版本:
Since you tagged it with mod-python, it's obviously your deployment method. Read the related docs.
The tl;dr version: