vote up 1 vote down star

I moved a WordPress installation to a new folder on a Windows/IIS server. I'm setting up 301 redirects in PHP, but it doesn't seem to be working. My post URL's have the following format:

http:://www.example.com/OLD_FOLDER/index.php/post-title/

I can't figure out how to grab the /post-title/ part of the URL.

$_SERVER["REQUEST_URI"] - which everyone seems to recommend - is returning an empty string. $_SERVER["PHP_SELF"] is just returning index.php.

flag
Just do a print_r($_SERVER) and see what data is available to you. If you can get the full URL then you can call pathinfo($url) to get the filename. – gradbot Oct 9 '08 at 20:53
It should be noted, that this question is about IIS, not PHP in general. Under Apache you'd just use $_SERVER['REQUEST_URI']. – Pies Aug 4 at 21:05

7 Answers

vote up 4 vote down check

Maybe

$_SERVER['PATH_INFO']

is what you want, based on the URLs you used to explain

link|flag
That did the trick. Thanks. – Nick Hebb Oct 9 '08 at 21:02
vote up 2 vote down

$_SERVER['REQUEST_URI'] doesn't work on IIS, but I did find this: http://neosmart.net/blog/2006/100-apache-compliant-request_uri-for-iis-and-windows/ which sounds promising.

link|flag
vote up 1 vote down

REQUEST_URI is set by Apache, so you won't get it with IIS. Try doing a var_dump or print_r on $_SERVER and see what values exist there that you can use.

link|flag
vote up 1 vote down

REQUEST_URI is an Apache-specific value, so won't be in IIS by default. There's a workaround described here, which involves following the installation instructions linked to by RoBorg above.

For future reference, there's a very handy table here which lists the server-type variables made available to you in both Apache and IIS.

link|flag
vote up 0 vote down

The posttitle part of the url is after your index.php, which is a common way of providing friendly urls without using mod rewrite. The posttitle is actually therefore part of the query string, so you should be able to get it using $_SERVER['QUERY_STRING']

(underscores removed due to formatting)

link|flag
vote up 0 vote down

I use the following function to get the current, full URL. This should work on IIS and Apache.

function get_current_url() {
    $protocol = 'http';
    if ($_SERVER['SERVER_PORT'] == 443 || (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on')) {
        $protocol .= 's';
        $protocol_port = $_SERVER['SERVER_PORT'];
    } else {
        $protocol_port = 80;
    }
    $host = $_SERVER['HTTP_HOST'];
    $port = $_SERVER['SERVER_PORT'];
    $request = $_SERVER['PHP_SELF'];
    $query = substr($_SERVER['argv'][0], strpos($_SERVER['argv'][0], ';') + 1);
    $toret = $protocol . '://' . $host . ($port == $protocol_port ? '' : ':' . $port) . $request . (empty($query) ? '' : '?' . $query);
    return $toret;
}
link|flag
vote up 0 vote down
$pageURL = (@$_SERVER["HTTPS"] == "on") ? "https://" : "http://";
if ($_SERVER["SERVER_PORT"] != "80")
{
    $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} 
else 
{
    $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.