简体   繁体   中英

Redirect from secure https to http for only one page

I have a page, page.php that I need to be redirected to http if it is accessed through https because otherwise my google ads won't show up.

To be precise, I would like the following to happen:

https://site.com/page.php?blah=foo?bar=blah --> http://site.com/page.php?blah=foo?bar=blah

I have so far tried :

RewriteCond %{HTTP_HOST} on

RewriteRule ^page\\.php$ http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

But this doesn't work. Any suggestions?

This might also be a quick copy paste

if ($_SERVER['HTTPS'] == "on") {
    $url = "http://". $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
    header("Location: $url");
    exit;
} 
if($_SERVER['SERVER_PORT'] == '443')
{
   header('location:http://url.com');
}

if the secure port is set to other than 443 this will not work so you can also use

$_SERVER['HTTPS'] == 'on'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM