Django 和 PHP 与 lighttpd 一起使用?

发布于 2024-08-17 11:20:32 字数 508 浏览 4 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

柠檬 2024-08-24 11:20:32

在 $HTTP["host"] 的定义下

proxy.server = ( "blog/" =>
               ( (
                   "host" => "123.123.123.111",
                   "port" => 80
                 ) )
           )

解决了这个问题,并且在 url 重写中添加了“^(/blog.*)$” => “$1”,

url.rewrite-once = (
    "^(/blog.*)$" => "$1",
)

我希望这会对某人有所帮助

I solved it

just under the defining of $HTTP["host"]

proxy.server = ( "blog/" =>
               ( (
                   "host" => "123.123.123.111",
                   "port" => 80
                 ) )
           )

and in url rewrite-once i added "^(/blog.*)$" => "$1",

url.rewrite-once = (
    "^(/blog.*)$" => "$1",
)

I hope this willhelp someone

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