我正在开发一个JSF 2.0开发项目,该项目使用一些我不拥有且无法编辑的外部页眉和页脚文件。 html页眉和页脚文件引用被引用为/images/corp_logo.gif
的图像和css。
我之前通过将image和css目录放在tomcat根目录下,使项目在Tomcat 7.0中正常运行:
C:\Users\1234\Documents\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp2\wtpwebapps\ROOT
但是,当我更改为WebLogic时,找不到文件所在的正确目录。该域位于以下目录中:
C:\Users\1234\Documents\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0
如果我“复制图像位置”,我会得到
http://localhost:7001/images/corp_logo.gif
我应该在哪里复制我的图像和css目录,以便WebLogic正确显示页面?我已经尝试了C:/images
,元数据目录,weblogic安装目录,但没有任何工作。
我在Windows 7上使用Eclipse Indigo和WebLogic 10.3.5。
答案 0 :(得分:0)
我的解决方案是将Apache放在WebLogic前面,并在httpd.conf中为映像目录使用别名。
Alias /images C:/fddt_dev/images
<Directory C:/fddt_dev/images>
Order allow,deny
Allow from all
</Directory>