如何设置mod_pagespeed以适用于所有页面

时间:2010-11-04 11:51:52

标签: apache httpd.conf mod-pagespeed

我一直在尝试使用mod_pagespeed,并且想知道是否有人知道如何向我的httpd.conf添加规则,以便自动将所有当前虚拟主机添加到列表正在运行的域名

ModPagepeedDomain http://vhost1.com
ModPagepeedDomain http://vhost2.com
ModPagepeedDomain http://vhost3.com

谢谢。

2 个答案:

答案 0 :(得分:5)

ModPagespeedDomain似乎接受通配符。来自here

# Wildcards (* and ?) are allowed in the domain specification. Be
# careful when using them as if you rewrite domains that do not
# send you traffic, then the site receiving the traffic will not
# know how to serve the rewritten content.

ModPagespeedDomain *

将其放在任何虚拟主机之外的conf文件中。

答案 1 :(得分:1)

是的,您可以使用通配符,但请不要使用ModPagespeedDomain *,除非您可以实际控制整个网络!

此声明决定要重写哪些资源,哪些资源不重写。这是一份合同,说所有匹配模式的服务器都会安装mod_pagespeed!

请使用以下内容:

ModPagespeedDomain vhost?.com

除非您实际上是可以从任何域重写的重写代理。

另外,您可以通过mod-pagespeed-discuss@googlegroups.com与我们联系,并在http://code.google.com/p/modpagespeed/issues/list列出问题