Plone 4 apache 重写代理可以工作但不显示图像

发布于 2024-11-07 00:07:42 字数 574 浏览 3 评论 0原文

我已经成功设置了 plone 4 并正在使用 apache2 重写,它似乎可以工作。问题是该网站的内容无法正确显示。

NameVirtualHost *:80
<IfModule mod_proxy.c>
<VirtualHost *:80>
ServerName elzwhere.net
RewriteEngine On
RewriteRule /static - [L]
RewriteRule ^/(.*) \
    http://localhost:8080/VirtualHostBase/http/%{SERVER_NAME}:80/et/VirtualHostRoot/%1 [L,P]
<Proxy *>
    Order Allow,Deny
    Allow from all
</Proxy>
</VirtualHost>
</IfModule>

如果您尝试连接到elzwhere.net,您就会看到我在说什么。我不太确定这里发生了什么。

提前致谢。

I have successfully setup plone 4 and am using apache2 rewrite and it seems to work. The problem is that the content for the site does not show up correctly.

NameVirtualHost *:80
<IfModule mod_proxy.c>
<VirtualHost *:80>
ServerName elzwhere.net
RewriteEngine On
RewriteRule /static - [L]
RewriteRule ^/(.*) \
    http://localhost:8080/VirtualHostBase/http/%{SERVER_NAME}:80/et/VirtualHostRoot/%1 [L,P]
<Proxy *>
    Order Allow,Deny
    Allow from all
</Proxy>
</VirtualHost>
</IfModule>

If you try to connect to elzwhere.net you will see what I'm talking about. I'm not exactly sure what is going on here.

Thanks in advance.

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

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

发布评论

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

评论(2

尬尬 2024-11-14 00:07:42

在 VirtualHostRoot 之后尝试 $1 而不是 %1。

Try $1 instead of %1 after the VirtualHostRoot.

旧伤还要旧人安 2024-11-14 00:07:42

您的重写规则有错误;使用 $1 进行末尾的正则表达式替换。

以后最好使用RewriteRule Witch来构建你的Zope重写规则,它每次都会完美地构建正确的规则!

You have an error in your rewrite rule; use $1 for the regular expression substitution at the end there.

In future, better use the RewriteRule Witch to construct your Zope rewrite rules, it constructs the correct rule flawlessly every time!

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