Hello.
i have this:
Binding {
Port = 8081
MaxRequestSize = 4096
}
Binding {
Port = 443
UseSSL = yes
MaxRequestSize = 4096
ServerKey = C:\serverkey.pem
}
Is there any way to redirect all requests (such as http://mysite.com:8081/) to http
s://mysite.com/ ?
I tried to use Url Toolkit just like that:
Match http://mysite.com:8081* Redirect https://mysite.com
But it seems that it's not working.