View Single Post
Old 12-29-2007, 01:46 PM   #1 (permalink)
exorcist
The Visitor
Newcomer 
 
Join Date: Dec 2007
Posts: 3
Thanks: 0
exorcist is on a distinguished road
Help http://domain.com => http://www.domain.com

When i open my page without www, like Domain.com in IE, images dont display, only when i type it with www infront...

So i try to fix that with this code, but no luck, any help?, i dont have .htaccess support?

Quote:
<?PHP
if ( substr ( $_SERVER['SERVER_NAME'], 0, 4 ) != 'www.' )
{
header ( 'location: http://www.' . $_SERVER['SERVER_NAME'] );
exit ();
}
?>
exorcist is offline  
Reply With Quote