apache redirect from non www to www

前端 未结 24 918
春和景丽
春和景丽 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 06:54

    Try this:

    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^example.com$ [NC]
    RewriteRule ^(.*) http://www.example.com$1 [R=301]
    

提交回复
热议问题