|
Iīve been looking through it and I canīt find it no matter what.I havenīt gone through the root directory though, can it be there to?
It might have something to do with the redirect. I put a 404 handler script in the root, like this:
<?php
$qs = $_SERVER['QUERY_STRING'];
$pos = strrpos($qs, '://');
$pos = strpos($qs, '/', $pos + 4);
$_SERVER['REQUEST_URI'] = substr($qs, $pos);
$_SERVER['PATH_INFO'] = $_SERVER['REQUEST_URI'];
include('index.php');
?>
then I did a 404 redirect from my server. In that way I can run "pretty permalinks" on IIS/windows.
Itīs so strange.
Last edited by rarali; 12-18-2008 at 02:54 AM..
|