我有一个动态语法网站
url:test.company.com/ssp /...
我想重定向到https
http://test.company.com/ssp/test> https://test.company.com/ssp/test
到目前为止,我已经构建了一个URL Rewrite
Pattern: (.*)
Condition: {HTTPS} / ^OFF$
Action: https://{HTTP_HOST}/{R:1}
我只能重定向到https://test.company.com/ssp
所以我的ssp / test字符串丢失了
我已经尝试过https:// {HTTP_HOST} / ssp / {R:1}。
有人可以解释我缺少的东西