Rewriting URLs from https:// to http:// in IIS7

前端 未结 4 817
孤独总比滥情好
孤独总比滥情好 2020-12-04 14:51

I\'m trying to rewrite urls from the form:

https://example.com/about

to the form

http://example.com/about

4条回答
  •  既然无缘
    2020-12-04 15:13

    please first consider binding https to your website for making below redirect module to work is essential (so bind your web app with a self-signed or valid certificate)

    final part in web.config to redirect https to http:

     
        
            
                
                
                   
                
                
            
        
    
    

    if you need the equivalent IIS GUI in rewrite module see below image

    source: look tech-net for more detail and step by step guide.

提交回复
热议问题