当前位置: 代码网 > 服务器>服务器>Linux > Nginx配置移动端和PC端自动跳转方式

Nginx配置移动端和PC端自动跳转方式

2025年11月17日 Linux 我要评论
nginx配置pc端和移动端自动跳转一、域名准备阶段客户端域名描述pc端www.yxf.com用于pc端访问的域名移动端m.yxf.com用于移动端访问的域名问题描述:pc端不管是访问www.yxf.

nginx配置pc端和移动端自动跳转

一、域名准备阶段

客户端域名描述
pc端www.yxf.com用于pc端访问的域名
移动端m.yxf.com用于移动端访问的域名

问题描述:pc端不管是访问www.yxf.com域名还是m.yxf.com域名都需要跳转到www.yxf.com域名下。

移动端不管是访问 m.yxf.com还是www.yxf.com下都需要要跳转到 m.yxf.com域名下

二、下面我们就来配置nginx

  1. pc端nginx的conf配置
server {
        listen       443;
        server_name  www.yxf.com;

        ssl on;
        ssl_certificate      cert/common.pem;
        ssl_certificate_key  cert/common.key;

        ssl_session_cache    shared:ssl:1m;
        ssl_session_timeout  5m;

        ssl_ciphers  ecdhe-rsa-aes128-gcm-sha256:ecdhe:ecdh:aes:high:!null:!anull:!md5:!adh:!rc4;
        ssl_prefer_server_ciphers  on;
	if ($http_user_agent ~* '(android|webos|iphone|ipod|blackberry)') {
             rewrite ^(.*) http://m.yxf.com$1 permanent;
        }


        location / {
            root   /home/yxf/pc;
            index  index.html;
        }
    }

  1. 移动端的nginx的conf配置
server {
        listen       443;
        server_name m.yxf.com;
	
	if ($http_user_agent !~* '(android|webos|iphone|ipod|blackberry)') {
            rewrite ^(.*) https://www.yxf.com$1 redirect;
       }

        ssl on;
        ssl_certificate      cert/common.pem;
        ssl_certificate_key  cert/common.key;

        ssl_session_cache    shared:ssl:1m;
        ssl_session_timeout  5m;

        ssl_ciphers  ecdhe-rsa-aes128-gcm-sha256:ecdhe:ecdh:aes:high:!null:!anull:!md5:!adh:!rc4;
        ssl_prefer_server_ciphers  on;

        location / {
            root   /home/yxf/mobile;
            index  index.html;
        }
    }

上述需要注意的是,如果想让pc 跳转到移动 或者移动跳转到 pc 是302 临时重定向,可以修改 permanent 为 redirect

  1. redirect – 返回临时重定向的http状态302
  2. permanent – 返回永久重定向的http状态301

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持代码网。

(0)

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

验证码:
Copyright © 2017-2025  代码网 保留所有权利. 粤ICP备2024248653号
站长QQ:2386932994 | 联系邮箱:2386932994@qq.com