Help for this page

Select Code to Download


  1. or download this
    <Location />
            AuthName "Intranet"
    ...
            PerlSetVar HTTPS "ON"
            SSLOptions +StdEnvVars
    </Location>
    
  2. or download this
            if ($r->dir_config('HTTPS') eq "ON") {
                    return DECLINED;
            } else {
                    return OK;
            }
    
  3. or download this
            if (($d->{nav_url_secure_flag} == 1) && ($r->dir_config('HTTPS
    +') ne "ON")) {
                    $r->header_out( Location => "https://portal/$url" );
                    return REDIRECT;
            }