2009-11-19 20:39:44 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
************************************************************************************
|
|
|
|
** **
|
|
|
|
** If you can read this text in your browser then you don't have PHP installed. **
|
2015-06-25 02:44:12 +02:00
|
|
|
** Please install PHP 5.3.3 or higher, preferably PHP 5.3.4+. **
|
2009-11-19 20:39:44 +01:00
|
|
|
** **
|
|
|
|
************************************************************************************
|
|
|
|
************************************************************************************/
|
|
|
|
|
|
|
|
/**
|
2012-04-12 11:15:32 +02:00
|
|
|
* This script bolts on top of SilverStripe to allow access without the use of .htaccess
|
2009-11-19 20:39:44 +01:00
|
|
|
* rewriting rules.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// This is the URL of the script that everything must be viewed with.
|
|
|
|
define('BASE_SCRIPT_URL','index.php/');
|
|
|
|
|
|
|
|
$ruLen = strlen($_SERVER['REQUEST_URI']);
|
|
|
|
$snLen = strlen($_SERVER['SCRIPT_NAME']);
|
|
|
|
|
2009-11-19 20:41:35 +01:00
|
|
|
$isIIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false);
|
|
|
|
|
|
|
|
// IIS will populate server variables using one of these two ways
|
|
|
|
if($isIIS) {
|
|
|
|
if($_SERVER['REQUEST_URI'] == $_SERVER['SCRIPT_NAME']) {
|
|
|
|
$url = "";
|
2009-11-19 20:41:49 +01:00
|
|
|
} else if($ruLen > $snLen && substr($_SERVER['REQUEST_URI'],0,$snLen+1) == ($_SERVER['SCRIPT_NAME'] . '/')) {
|
|
|
|
$url = substr($_SERVER['REQUEST_URI'],$snLen+1);
|
|
|
|
$url = strtok($url, '?');
|
2009-11-19 20:41:35 +01:00
|
|
|
} else {
|
|
|
|
$url = $_SERVER['REQUEST_URI'];
|
|
|
|
if($url[0] == '/') $url = substr($url,1);
|
|
|
|
$url = strtok($url, '?');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apache will populate the server variables this way
|
|
|
|
} else {
|
|
|
|
if($ruLen > $snLen && substr($_SERVER['REQUEST_URI'],0,$snLen+1) == ($_SERVER['SCRIPT_NAME'] . '/')) {
|
|
|
|
$url = substr($_SERVER['REQUEST_URI'],$snLen+1);
|
|
|
|
$url = strtok($url, '?');
|
|
|
|
} else {
|
|
|
|
$url = "";
|
2009-11-19 20:39:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-19 20:41:35 +01:00
|
|
|
$_GET['url'] = $_REQUEST['url'] = $url;
|
|
|
|
|
|
|
|
$fileName = dirname($_SERVER['SCRIPT_FILENAME']) . '/' . $url;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This code is a very simple wrapper for sending files
|
|
|
|
* Very quickly pass through references to files
|
|
|
|
*/
|
|
|
|
if($url && file_exists($fileName)) {
|
2010-10-13 04:33:55 +02:00
|
|
|
$fileURL = (dirname($_SERVER['SCRIPT_NAME'])=='/'?'':dirname($_SERVER['SCRIPT_NAME'])) . '/' . $url;
|
2012-08-30 00:01:29 +02:00
|
|
|
if(isset($_SERVER['QUERY_STRING'])) {
|
|
|
|
$fileURL .= '?' . $_SERVER['QUERY_STRING'];
|
|
|
|
}
|
2009-11-19 20:41:35 +01:00
|
|
|
header($_SERVER['SERVER_PROTOCOL'] . ' 301 Moved Permanently');
|
|
|
|
header("Location: $fileURL");
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
|
2012-04-12 11:15:32 +02:00
|
|
|
require_once('framework/main.php');
|