Django 和 PHP 与 lighttpd 一起使用?
我正在使用 Django,并在 Django 中构建了我的个人主页,但我想使用我的 WordPress 博客作为路径。
例如,如果我想在 Django 或 lighttpd 中路径 /blog/
,以便它将呈现 PHP WordPress 站点,那么最好的方法是什么?
我在 lighttpd 中使用 proxy.server 进行了测试,但没有成功 - 看起来 Django 覆盖了 lightttpd 的别名。
proxy.server = ("blog/" =>
((
"host" => "123.123.123.123",
"port" => 80
))
)
让 blog.testsite.com 转到将呈现 PHP 的 lighttpd 实例是没有问题的,但这不是我想要的。
I'm playing around with Django and have built my personal homepage in Django, but I want to use my wordpress blog as a path.
For example if I want to path /blog/
in Django or in lighttpd so it will render the PHP wordpress site what is the best way to do that?
I tested with proxy.server in lighttpd with no luck - it seems like Django overrides the lightttpd's alias.
proxy.server = ("blog/" =>
((
"host" => "123.123.123.123",
"port" => 80
))
)
It would be no problem just to let blog.testsite.com go to an lighttpd instance which will render the PHP, but that's not what I want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我
在 $HTTP["host"] 的定义下
解决了这个问题,并且在 url 重写中添加了“^(/blog.*)$” => “$1”,
我希望这会对某人有所帮助
I solved it
just under the defining of $HTTP["host"]
and in url rewrite-once i added "^(/blog.*)$" => "$1",
I hope this willhelp someone