php removing www from url

2019-09-19 10:46发布

I am getting an error on a FB app when the url does not have the https or and has a www in the url. I am just going to strip the url of the www.

The code below adds the https if it is not in the url but how would I remove the www as well?

if(!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] == ""){
    $redirect = "https://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
    header("HTTP/1.1 301 Moved Permanently");
    header("Location: $redirect");
}

标签: php url https
3条回答
Summer. ? 凉城
2楼-- · 2019-09-19 10:59
if(!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] == ""){
    $redirect = str_replace('www.', '', "https://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);
    header("HTTP/1.1 301 Moved Permanently");
    header("Location: $redirect");
}

easiest way.

查看更多
Lonely孤独者°
3楼-- · 2019-09-19 11:10

Try to do it using .htaccess

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
查看更多
聊天终结者
4楼-- · 2019-09-19 11:10

Here is a way to do it with your .htaccess with https

RewriteEngine On
RewriteCond %{HTTPS} !=on [OR]
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
  • first line turns your RewriteEngine ... On
  • second line checks to see if https is ... on or
  • third line we check to see if the domain name starts with www
  • fourth line if either of the above conditions match rewrite the domain
查看更多
登录 后发表回答