apache redirect from non www to www

前端 未结 24 1348
春和景丽
春和景丽 2020-11-22 06:34

I have a website that doesn\'t seem to redirect from non-www to www.

My Apache configuration is as follows:

RewriteEngine On
### re-direct t         


        
24条回答
  •  野的像风
    2020-11-22 07:03

    
        ServerAlias example.com
        RedirectMatch permanent ^/(.*) http://www.example.com/$1
    
    

    This will redirect not only the domain name but also the inner pages.like...

    example.com/abcd.html               ==>    www.example.com/abcd.html
    example.com/ab/cd.html?ef=gh   ==>    www.example.com/ab/cd.html?ef=gh

提交回复
热议问题