我使用 Excel 的网络查询功能从 www.tmx.com 获取股票报价。前段时间 Excel 开始报告 Web 查询没有返回任何数据,即使网页很好。谷歌搜索表明一个可能的问题是 no-cache 指令。而且,如果我将报价单的网页保存到文件中,并将 Excel 的网络查询 (file://...) 指向它,那确实有效。
由于我无法控制 TMX 的 Web 服务器,也无法修复 Excel,我想我将 Apache 设置为 8080 上的本地服务器,将其配置为(转发)代理,去掉 Cache-Control 标头响应,看看这是否让 Excel 高兴。
我有 Windows 7 64 位、Excel 2007、Apache 2.2、Opera 11.61。Apache 在 127.0.0.1:8080 上手动运行,Opera 可以将其用作代理。
我无法说服 Apache 去掉那个标题。mod_headers 会将标头添加到传出请求中,但似乎不会触及响应。我无法在响应中添加/更改/取消设置任何标题。
asis 模块似乎仅适用于文件。mod_rewrite 用于 URL。其他似乎没什么用。mod_expires 只会更改标题;我想完全剥离它。
有没有办法让 Apache 从代理响应中剥离 Cache-Control:?
或者,有人可以推荐一个不同的 HTTP 1.1 代理来满足我的需要吗?
[第一次海报,有时是潜伏者。欢迎提出建设性的批评。]
我的 Apache conf、注释和空行被删除。
ServerRoot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2"
Listen 8080
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule dir_module modules/mod_dir.so
LoadModule env_module modules/mod_env.so
LoadModule headers_module modules/mod_headers.so
LoadModule include_module modules/mod_include.so
LoadModule isapi_module modules/mod_isapi.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module modules/mod_mime.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule setenvif_module modules/mod_setenvif.so
<IfModule !mpm_netware_module>
<IfModule !mpm_winnt_module>
User daemon
Group daemon
</IfModule>
</IfModule>
ServerAdmin smacdonald@cds.int
DocumentRoot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs"
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
<Directory "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
ErrorLog "logs/error.log"
LogLevel warn
<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog "logs/access.log" common
</IfModule>
<IfModule alias_module>
ScriptAlias /cgi-bin/ "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/cgi-bin/"
</IfModule>
<IfModule cgid_module>
</IfModule>
<Directory "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
DefaultType text/plain
<IfModule mime_module>
TypesConfig conf/mime.types
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
</IfModule>
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
<IfModule proxy_http_module>
ProxyRequests On
ProxyVia On
<proxy *>
Order deny,allow
Allow from localhost
</proxy>
</IfModule>
<IfModule headers_module>
Header set Cache-Control "public"
Header add MyHeader "MyHeader"
RequestHeader set Cache-Control "public"
RequestHeader add MyRequestHeader "MyRequestHeader"
</IfModule>