怎么用ASP实现http和https的转化?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么用ASP实现http和https的转化?相关的知识,希望对你有一定的参考价值。
怎么用ASP实现http和https的转化?
参考技术A 在做电子商务站点的时候,经常要求浏览器在https和http之间转化下面我给出相应的代码:
让一个ASP页面以https开始,请在该ASP页面顶部添加如下代码:
<%
Response.Buffer = True
If (Request.ServerVariables("HTTPS") = "off") Then
Dim xredir__, xqstr__
xredir__ = "https://" & Request.ServerVariables("SERVER_NAME") & _
Request.ServerVariables("SCRIPT_NAME")
xqstr__ = Request.ServerVariables("QUERY_STRING")
if xqstr__ <> "" Then xredir__ = xredir__ & "?" & xqstr__
Response.redirect xredir__
End if
%>
相反的,强迫以Http开始
请添加如下代码
<%
Response.Buffer = True
If (Request.ServerVariables("HTTPS") = "on") Then
Dim xredir__, xqstr__
xredir__ = "http://" & Request.ServerVariables("SERVER_NAME") & _
Request.ServerVariables("SCRIPT_NAME")
xqstr__ = Request.ServerVariables("QUERY_STRING")
if xqstr__ <> "" Then xredir__ = xredir__ & "?" & xqstr__
Response.redirect xredir__
End if
%>
希望能对你有所帮助本回答被提问者采纳 参考技术B 顺便说一下,HTTPS不是系统自带的服务,需要花钱向提供商进行购买,比较著名的有VerSign
PHP实现http与https转化
http://zyan.cc/post/142/
最近在写PHP程序时,需要使浏览器在https和http之间转化,上网搜索相关信息,无奈只有最近在写PHP程序时,需要使浏览器在https和http之间转化,上网搜索相关信息,无奈只有一篇介绍用ASP实现“在http和https之间转化”的文章,于是只好行写了用PHP实现http与https转化的代码。
如果网页使用https访问,在网页开头加入以下代码:
- <?php
- //http转化为https
- if ($_SERVER["HTTPS"]<>"on")
- {
- $xredir="https://".$_SERVER["SERVER_NAME"].
- $_SERVER["REQUEST_URI"];
- header("Location: ".$xredir);
- }
- ?>
如果网页使用http访问,在网页开头加入以下代码:
- <?php
- //https转化为http
- if ($_SERVER["HTTPS"]=="on")
- {
- $xredir="http://".$_SERVER["SERVER_NAME"].
- $_SERVER["REQUEST_URI"];
- header("Location: ".$xredir);
- }
- ?>
以上是关于怎么用ASP实现http和https的转化?的主要内容,如果未能解决你的问题,请参考以下文章
Java 之利用OkHttpClient进行简单的http请求,利用Jackson框架把json转化为java对象的实现