Jump to content

301 Redirect With PHP http:// to http://www.


Recommended Posts

Hello,

 

I'm trying to redirect http://domainname.com to http://www.domainname.com using a 301, on all pages, that means it needs to go in the header file... Here's the code I have:

 

 

# <?php

# if(!stristr($_SERVER["HTTP_HOST"], 'www')){

# header("HTTP/1.1 301 Moved Permanently");

# header("Location: http://www.domainname.com/" . $_SERVER["REQUEST_URI"]);

# exit();

# }

# ?>

 

 

 

The only thing is that it redirects every page to http://www.domainname.com/... including http://www.domainname.com/ How do I fix this? What's the solution? I'm assuming there's some more code that needs to go into it. The host doesn't allow me to do this in the htaccess file. Thanks.

 

Link to comment
https://forums.phpfreaks.com/topic/65072-301-redirect-with-php-http-to-httpwww/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.