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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] 关于全站https

[复制链接]
defilolerwp 发表于 2017-10-12 12:26:56 | 显示全部楼层 |阅读模式
本帖最后由 defilolerwp 于 2017-10-12 12:55 编辑

已经做好全站https了。

但是发现一个重大问题!!!

主题列表页贴子的伪静态地址、首页版块地址是http开头的

当点开之后,会被301跳转到https开头的动态地址,
怎么他们直接指向地址为https开头。
是否要修改模板???求具体解决方案。

下面是.htaccess文件的规则~~
=====================================================
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^topic-(.+)\.html$ portal.php?mod=topic&topic=$1&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^article-([0-9]+)-([0-9]+)\.html$ portal.php?mod=view&aid=$1&page=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^forum-(\w+)-([0-9]+)\.html$ forum.php?mod=forumdisplay&fid=$1&page=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ forum.php?mod=viewthread&tid=$1&extra=page\%3D$3&page=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^group-([0-9]+)-([0-9]+)\.html$ forum.php?mod=group&fid=$1&page=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^space-(username|uid)-(.+)\.html$ home.php?mod=space&$1=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^blog-([0-9]+)-([0-9]+)\.html$ home.php?mod=space&uid=$1&do=blog&id=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^archiver/(fid|tid)-([0-9]+)\.html$ archiver/index.php?action=$1&value=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^tag-(.+)\.html$ misc.php?mod=tag&id=$1
RewriteCond %{QUERY_STRING} ^(.*)
$RewriteRule ^tag\.html$ misc.php?mod=tag
RewriteRule ^([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ plugin.php?id=$12&%1


RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*) https://%{HTTP_HOST}/$1 [R=301,L]





小柒iphone 发表于 2017-10-12 14:10:55 | 显示全部楼层
转载最新版DZ3.3SLL全站HTTPS化,并优化各搜索引擎收录,网址栏全绿色,没不安全提示
https://discuz.dismall.com/thread-3810305-1-1.html
(出处: Discuz! 官方站)
回复

使用道具 举报

向上的葱子 发表于 2017-10-12 20:35:23 | 显示全部楼层
感觉你是的apache没有配置正确。
可以看下这个https://www.aitiancheng.com/article-563.html
回复

使用道具 举报

newlittleice531 发表于 2017-10-22 10:20:11 | 显示全部楼层
请问,你的问题解决了么,我和你一模一样,搞了两天了
回复

使用道具 举报

yxmax 发表于 2017-10-22 11:26:33 | 显示全部楼层
https://www.idcjia.net/我的好像没问题啊?我没看懂你的意思。。
回复

使用道具 举报

leonlaiminwang 发表于 2017-11-8 12:51:03 | 显示全部楼层
刚刚升级到3.4 20171001,发现以下伪静态规则只有在http的环境下生效,然而在https的环境却不生效,除了http可以使用伪静态规则之外,只要不登录任何帐号,在https的环境下也可以使用这个伪静态规则。

即是说一旦登录了之后,.htaccess的伪静态规则就立马失去效用了。(包括登录任何等级的帐号,比如说新手等级。)

这个应该是3.4 20171001的bugs,因为升级之前是没有这个问题的。

注意:我没有设置自动跳转https是因为还有一些插件不支持https.

  1. RewriteEngine On

  2. RewriteBase /

  3. RewriteCond %{QUERY_STRING} ^(.*)$
  4. RewriteRule ^topic-(.+)\.html$ portal.php?mod=topic&topic=$1&%1
  5. RewriteCond %{QUERY_STRING} ^(.*)$
  6. RewriteRule ^article-([0-9]+)-([0-9]+)\.html$ portal.php?mod=view&aid=$1&page=$2&%1
  7. RewriteCond %{QUERY_STRING} ^(.*)$
  8. RewriteRule ^forum-(\w+)-([0-9]+)\.html$ forum.php?mod=forumdisplay&fid=$1&page=$2&%1
  9. RewriteCond %{QUERY_STRING} ^(.*)$
  10. RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ forum.php?mod=viewthread&tid=$1&extra=page\%3D$3&page=$2&%1
  11. RewriteCond %{QUERY_STRING} ^(.*)$
  12. RewriteRule ^group-([0-9]+)-([0-9]+)\.html$ forum.php?mod=group&fid=$1&page=$2&%1
  13. RewriteCond %{QUERY_STRING} ^(.*)$
  14. RewriteRule ^space-(username|uid)-(.+)\.html$ home.php?mod=space&$1=$2&%1
  15. RewriteCond %{QUERY_STRING} ^(.*)$
  16. RewriteRule ^blog-([0-9]+)-([0-9]+)\.html$ home.php?mod=space&uid=$1&do=blog&id=$2&%1
  17. RewriteCond %{QUERY_STRING} ^(.*)$
  18. RewriteRule ^(fid|tid)-([0-9]+)\.html$ archiver/index.php?action=$1&value=$2&%1
  19. RewriteCond %{QUERY_STRING} ^(.*)$
  20. RewriteRule ^([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ plugin.php?id=$1:$2&%1
复制代码

回复

使用道具 举报

leonlaiminwang 发表于 2017-11-8 13:23:32 | 显示全部楼层
正解(来自Discuz官方论坛):

我竟然听信优化大师所建议的“Rewrite仅针对游客 开启此项,则 Rewrite功能只对游客和搜索引擎有效,可减轻服务器负担”

结果搞成这样,只要关闭这项就解决问题了!

看来优化大师是有两项不能优化的:

1.) Rewrite仅针对游客 开启此项,则 Rewrite功能只对游客和搜索引擎有效,可减轻服务器负担(不可信!)

2.) 检测SEO优化设置 建议您完善SEO设置(怎么设置都会出现这个信息!)

你同意吗?
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-29 09:51 , Processed in 0.022475 second(s), 5 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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