我正在运行Apache 249并尝试通过weblogic应用程序使用SSI。
我已将以下行添加到配置文件中。
AddType text/html .jsp
AddOutputFilter INCLUDES .jsp
已将Options Includes
添加到virtualHost
及以下。
<Directory "/apache/htdocs">
Options Indexes FollowSymLinks Includes
AllowOverride None
Require all granted
</Directory>
如果我从/apache/htdocs
中访问测试SSI文件,它可以正常工作,但是如果我使用Weblogic插件使用Location
块,则它不起作用。
知道我在这里缺少什么吗?
答案 0 :(得分:1)
您需要在位置块中使用SetOutputFilter Includes
,它将在传递到客户端之前从代理处理.jsp文件,从而允许虚拟包含工作。