Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
  • 53fa4bbedbb4fcf4be38c963e37067966da2387f
  • main default protected
  • master
  • remove-text-area
  • captcha
5 results

index.php

Blame
  • index.php 211 B
    <?php
    	if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
    		$uri = 'https://';
    	} else {
    		$uri = 'http://';
    	}
    	$uri .= $_SERVER['HTTP_HOST'];
    	header('Location: '.$uri.'/exhibition/');
    	exit;
    ?>