don't use /index/eoiruer urls but /index.php/eorieur

more standard. the first only work with mod_negociation
This commit is contained in:
Marc MAURICE 2010-10-20 00:39:49 +02:00
parent b05b2ededc
commit cb1e3285e4
2 changed files with 3 additions and 3 deletions

View file

@ -61,7 +61,7 @@ function getAlbumPreview($dir)
return '';
}
$scriptUrlPath = substr($_SERVER["SCRIPT_NAME"], 0, -4); // trim .php
$scriptUrlPath = $_SERVER["SCRIPT_NAME"];
// if url == http://localhost/photos/index/toto/titi, path_info == /toto/titi
// if url == http://localhost/photos/index, path_info is not set
@ -93,7 +93,7 @@ foreach (scandir($realDir) as $file) if ($file != '.' and $file != '..')
{
$ext = strtolower(substr($file, -4));
if ($ext == ".jpg" or $ext == ".png")
$imageFiles[] = array( "name" => $file, "url" => getPreview("$realDir/$file"), "link" => dirname($scriptUrlPath)."/view$shortPath/$file" );
$imageFiles[] = array( "name" => $file, "url" => getPreview("$realDir/$file"), "link" => dirname($scriptUrlPath)."/view.php$shortPath/$file" );
else
$otherFiles[] = array( "name" => $file, "link" => dirname($scriptUrlPath)."/$realDir/$file" );
}

View file

@ -42,7 +42,7 @@ if ($nextImage === '') {
if ($prevImage === '') $prevPageUrl = '';
else $prevPageUrl = dirname($_SERVER["REQUEST_URI"])."/$prevImage";
$directoryUrl = dirname($_SERVER["SCRIPT_NAME"])."/index".dirname($shortPath);
$directoryUrl = dirname($_SERVER["SCRIPT_NAME"])."/index.php".dirname($shortPath);
header('Content-Type: text/html; charset=utf-8');
header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 3600));