我花了很多时间让下面的事情发挥作用。但看起来它不起作用。
我需要将用户重定向到:
/webcenter/portal/MyPortal
当他们试图访问时:
/webcenter/
/webcenter/portal
/webcenter/portal/home
我在OHS服务器的配置文件中尝试使用RedirectMatch
和RewriteRule
但运气不佳。
RewriteRule ^webcenter$ http://portal.abc.com/webcenter/portal/MyPortal [L]
你能帮我吗?
答案 0 :(得分:0)
这应该有效:
RewriteRule ^/webcenter/(portal|portal/home)?$ http://portal.abc.com/webcenter/portal/MyPortal [R=301,L]
将它放在您已有的规则之后。