Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] DZ3.4如何自动跳转HTTPS

[复制链接]
我爱你2014 发表于 2018-11-3 14:12:22 | 显示全部楼层 |阅读模式
装了3.4,证书什么的都好了,HTTPS访问正常,现在想把网站访问时自动跳转到HTTPS上,需要怎么做,不做3.1跳
1314学习网 发表于 2018-11-3 14:46:54 | 显示全部楼层
百度自己服务器的301 https跳转,比如:nginx  https 301
回复

使用道具 举报

mR.耗子 发表于 2018-11-3 14:50:38 | 显示全部楼层
  你的是什么系统,可以用伪静态方案来做强制跳转~!
  或者可以联系我的QQ交谈有偿服务
回复

使用道具 举报

jiangchuankyo 发表于 2018-11-3 18:50:50 | 显示全部楼层
1314学习网 发表于 2018-11-3 14:46
百度自己服务器的301 https跳转,比如:nginx  https 301

应该用302, 百度也说了支持, 百度说了非必要情况下不要轻易使用301跳转, 否则将有可能失去所有用户.
因为301会被浏览器永久记住跳转不受站长以后更新网站控制, 就算把网站删除域名删了浏览器访问它还是会继续跳到以前设置过的url去
回复

使用道具 举报

52zy 发表于 2018-12-26 13:39:41 | 显示全部楼层
去我的论坛w3.qhdcom.com我发帖子有教程
回复

使用道具 举报

mahoupao 发表于 2018-12-26 14:07:16 | 显示全部楼层
直接把80端口,跳转过去就可以。
这是nginx的

  1. server
  2.     {
  3.         listen 80;
  4.         #listen [::]:80;
  5.         server_name bbs.XXX.com ;
  6.         index index.html index.htm index.php default.html default.htm default.php;
  7.         root  /home/wwwroot/XXXX;

  8.         if ($scheme = http ) {
  9.         return 301 https://$host$request_uri;
  10.         }

  11.         include rewrite/discuzx.conf;
  12.         #error_page   404   /404.html;


  13.         # Deny access to PHP files in specific directory
  14.         #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

  15.         include enable-php.conf;

  16.         location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  17.         {
  18.             expires      30d;
  19.         }

  20.         location ~ .*\.(js|css)?$
  21.         {
  22.             expires      12h;
  23.         }

  24.         location ~ /.well-known {
  25.             allow all;
  26.         }

  27.         location ~ /\.
  28.         {
  29.             deny all;
  30.         }

  31.         access_log off;
  32.     }
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-26 08:33 , Processed in 0.023791 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表