我使用apache作为tomcat的代理,我可以从url中删除端口号(从堆栈溢出读取这么多帖子后)。
现在我需要用alfresco登录页面替换apache it works
页面。这就是我所做的。
我从htdocs
文件夹中删除了index.html文件
我从alfresco文件夹中复制了index.jsp文件
我修改了httpd.conf文件,如下所示
<Directory "C:/Alfresco/tomcat/webapps/alfresco">
</Directory>
<IfModule dir_module>
DirectoryIndex index.jsp
</IfModule
但我得到index.jsp文件的文本格式(就像在记事本中一样)而不是登录页面。有什么问题?
已更新
我用mod重写来做这个