美文网首页
nginx下强制跳转到www域名

nginx下强制跳转到www域名

作者: Renew全栈工程师 | 来源:发表于2017-11-17 12:54 被阅读79次

    很多高优化的朋友,都需要从 exp.com 跳转到www.exp.com的需求吧,大多时候可以在第三方域名服务商那边实现,但有的不能,就需要我们自己来实现了,下面是nginx的配置文件

    #先监听 exp.com域名,然后转发到www下面
    server {
      listen         80;
      server_name    exp.com;
    
      rewrite ^(.*) $scheme://www.$server_name$1 permanent;
    }
    
    #www.exp.com配置
    server {
      listen       80;
      root         path;
      server_name  www.exp.com;
      
      location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
       }
    }
    

    相关文章

      网友评论

          本文标题:nginx下强制跳转到www域名

          本文链接:https://www.haomeiwen.com/subject/moxjvxtx.html