要求是重定向 URL,如下所示。
https://example.domain.com 到 https://example.domain.com/forms/frmservlet?config=exmp60
它在使用 http 时运行良好,但后来我们添加了 ssl 证书以使用 https 并且此重定向不起作用。我们使用 OHS(Oracle http 服务器)作为我们的网络服务器。
我不知道如何修改它以使其工作,非常感谢任何帮助。提前致谢。
我的配置如下所示。
虚拟主机配置文件
NameVirtualHost *:4443
<VirtualHost *:4443>
ServerName example.domain.com
ServerAlias example
DocumentRoot /opt/weblogic/product/virtualhosts/example.domain.com/htdocs
SSLEngine on
SSLWallet "${ORACLE_INSTANCE}/config/fmwconfig/components/${COMPONENT_TYPE}/instances/${COMPONENT_NAME}/keystores"
RewriteEngine on
RewriteOptions Inherit
DirectoryIndex index.html startpage.jsp
</VirtualHost>
htdocs 目录中的 Index.html 文件
<html>
<head>
<title>EXP: example.domain.com</title>
<meta http-equiv="Refresh" content="0; url=/forms/frmservlet?config=exmp60">
</head>
<body>
</body>
</html>