账号通
    

账号  

密码  

8279

查看

11

回复
主题:[分享]KesionCMS全站使用https的方法 [收藏主题] 转到:  
poemail 当前离线

105

主题

0

广播

1

粉丝
添加关注
级别:一年级

用户积分:1194 分
登录次数:42 次
注册时间:2007/8/7
最后登录:2017/5/27
poemail 发表于:2017/5/10 22:56:02   | 显示全部帖子 查看该作者主题 楼主 
科汛在线考试系统(NET)

现在https越来越流行,更多的网站开始全站使用ssl加密传输,但kesioncms似乎在这一点上没有做过多的考虑;本人在架设网站时就发现完全没法使用cms,比如我的网站,因为系统获取的url是http://www.sithing.com:443,无论你怎么更改成https://www.sithing.com都没有用,而我网站的初衷又不想开启网站http://访问,所有的访问都需要经过https,那么,这就需要改代码了。


以下基于KesionCMS X2/X1更改:



找到文件:KS_Cls/Kesion.CommonCls.asp,约724行



Public Function GetAutoDomain()


Dim TempPath


If Request.ServerVariables("SERVER_PORT") = "80" Then


GetAutoDomain = Request.ServerVariables("SERVER_NAME")


Else


GetAutoDomain = Request.ServerVariables("SERVER_NAME") & ":" & Request.ServerVariables("SERVER_PORT")


End If


If Instr(UCASE(GetAutoDomain),"/W3SVC")<>0 Then


   GetAutoDomain=Left(GetAutoDomain,Instr(GetAutoDomain,"/W3SVC"))


End If


GetAutoDomain = "http://" & GetAutoDomain


End Function


改成:



Public Function GetAutoDomain()


Dim TempPath


GetAutoDomain = Request.ServerVariables("SERVER_NAME")


If Instr(UCASE(GetAutoDomain),"/W3SVC")<>0 Then


   GetAutoDomain=Left(GetAutoDomain,Instr(GetAutoDomain,"/W3SVC"))


End If


If Request.ServerVariables("SERVER_PORT") = "80" Then


GetAutoDomain = "http://" & GetAutoDomain


elseif Request.ServerVariables("SERVER_PORT") = "443" Then


GetAutoDomain = "https://" & GetAutoDomain


else


GetAutoDomain = "http://" & GetAutoDomain & ":" & Request.ServerVariables("SERVER_PORT")


end if


End Function





本文来源:https://www.sithing.com/archives/84




 
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
<上一主题 | 下一主题 >
Powered By KesionCMS Version X1
厦门科汛软件有限公司 © 2006-2016 页面执行0.04688秒 powered by KesionCMS 9.0