apache redirect from non www to www

前端 未结 24 891
春和景丽
春和景丽 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:11

    http://example.com/subdir/?lold=13666 => http://www.example.com/subdir/?lold=13666

    RewriteEngine On
    RewriteCond %{HTTP_HOST} !^www\. [NC]
    RewriteRule ^(.*)$ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    

提交回复
热议问题