mod_rewrite - add www

前端 未结 3 1639
半阙折子戏
半阙折子戏 2021-01-02 05:03

I\'m trying to force www for my site address with .htaccess:

RewriteCond %{HTTP_HOST} ^mysite\\.com$ [NC]
RewriteRule ^(.*)$ http:/         


        
3条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-02 05:47

    From the superb HTML5 Boilerplate .htaccess:

    
      RewriteCond %{HTTPS} !=on
      RewriteCond %{HTTP_HOST} !^www\..+$ [NC]
      RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    
    

提交回复
热议问题