我对hybris真的很新,所以我只是按照维基页面安装了加速器。但是当我使用http链接
访问该网站时http://electronics.local:9001/yacceleratorstorefront/ 它总是重定向到 https://electronics.local:9002/yacceleratorstorefront/electronics/en/
我怀疑get和服务器已使用新的重定向URL返回302 Found。
任何人都可以帮忙解释一下设置是什么以及为什么hybris会将我重定向到这样的https链接。
答案 0 :(得分:3)
加速器的默认行为是更改它,更新商店前端扩展名下的文件spring-security-config.xml
:
<security:intercept-url pattern="/**" requires-channel="https" />
答案 1 :(得分:0)
我能够通过删除
的每个实例来实现这一目标 <security:intercept-url pattern="/**" requires-channel="https" />
或只是
requires-channel="https"
在拦截器在Benoit提到的同一文件spring-security-config.xml
中稍微复杂的地方。
然后,重新启动平台(无需编译)。
这样做很有效,但显然是以删除所有https要求为代价,所以这只应该用于演示目的。