Re: turn off the www

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, 2005-06-29 at 10:57 -0700, Philip Hallstrom wrote:
I am using the following code to turn http into https and get my ssl
working.

if($HTTP_SERVER_VARS["HTTPS"] != "on")
{
  $newurl = "https://"; . $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"];
header("location: $newurl");
}

$newurl = "https://"; . ereg_replace("^www.", "", $_SERVER["SERVER_NAME"])......

Wouldn't

$newUrl = 'https://' . substr( $_SERVER['SERVER_NAME'], 4 ) ........

be a _hell_ of a lot faster?

Only if he can gaurantee that $_SERVER['SERVER_NAME'] *ALWAYS* is prefixed with "www." Otherwise he might end up with chost.com instead of aztechost.com...

-philip

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux