我正在运行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文件,它工作得很好,但是如果我使用Location
块使用Weblogic插件它不起作用。
你知道我错过了什么吗?
您需要在Location Block中使用SetOutputFilter Includes
,它将在传递到客户端之前处理来自代理的.jsp文件,从而允许Virtual Include工作。