1. ホーム
  2. redirect

[解決済み] Nginx の no-www を www に、www を no-www に。

2022-03-18 21:13:43

質問

を使っています。 チュートリアルに沿ってRackspaceクラウド上のnginx で、ネットで検索しても、今のところ解決していません。

SEOやその他の理由から、.htaccessで通常通りwww.mysite.com、mysite.comに移動させたいのですが、どうすればいいですか?

私の /etc/nginx/sites-available/www.example.com.vhost のコンフィグを使用します。

server {
       listen 80;
       server_name www.example.com example.com;
       root /var/www/www.example.com/web;

       if ($http_host != "www.example.com") {
                 rewrite ^ http://example.com$request_uri permanent;
       }

私はまた、次のことを試してみました。

server {
       listen 80;
       server_name example.com;
       root /var/www/www.example.com/web;

       if ($http_host != "www.example.com") {
                 rewrite ^ http://example.com$request_uri permanent;
       }

私も試してみました。2回目の試みは両方ともリダイレクトループエラーを発生させます。

if ($host = 'www.example.com' ) {
rewrite ^ http://example.com$uri permanent;
}

私のDNSは標準で設定されています。

site.com 192.192.6.8 A type at 300 seconds
www.site.com 192.192.6.8 A type at 300 seconds

(IPとフォルダの例は、例として、また今後の参考のために使用しました)。Ubuntu 11を使用しています。

解決方法は?

HTTPソリューション

からの ドキュメント 正しい方法は、example.org のために別のサーバを定義することです":

server {
    listen       80;
    server_name  example.com;
    return       301 http://www.example.com$request_uri;
}

server {
    listen       80;
    server_name  www.example.com;
    ...
}

HTTPSソリューション

を含むソリューションをご希望の方 https:// ...

server {
        listen 80;
        server_name www.domain.com;
        # $scheme will get the http protocol
        # and 301 is best practice for tablet, phone, desktop and seo
        return 301 $scheme://domain.com$request_uri;
}

server {
        listen 80;
        server_name domain.com;
        # here goes the rest of your config file
        # example 
        location / {

            rewrite ^/cp/login?$ /cp/login.php last;
            # etc etc...

        }
}

注:もともと https:// というのも、私たちはロードバランサーを使用しており、https:// サーバーは高トラフィックの SSL 支払いサーバーだからです。https:// と http:// を混在させることはありません。


nginx のバージョンを確認するには、以下のようにします。 nginx -v .

nginxのリダイレクトでurlからwwwを取り除く

server {
    server_name  www.domain.com;
    rewrite ^(.*) http://domain.com$1 permanent;
}

server {
    server_name  domain.com;
    #The rest of your configuration goes here#
}

だから、2つのサーバーコードが必要なのです。

nginxのリダイレクトでurlにwwwを追加する。

もし、必要なものがその逆で、domain.comからwww.domain.com にリダイレクトするのであれば、これを利用することができます。

server {
    server_name  domain.com;
    rewrite ^(.*) http://www.domain.com$1 permanent;
}

server {
    server_name  www.domain.com;
    #The rest of your configuration goes here#
}

ご想像のとおり、これはちょうど逆で、最初の例と同じように動作します。この方法では、完全なパーマのリダイレクトと移動なので、SEOのマークダウンがありません。WWWがないのは、強制的にディレクトリを表示させるためです。

私のコードの一部は、より良いビューのために以下に示されています。

server {
    server_name  www.google.com;
    rewrite ^(.*) http://google.com$1 permanent;
}
server {
       listen 80;
       server_name google.com;
       index index.php index.html;
       ####
       # now pull the site from one directory #
       root /var/www/www.google.com/web;
       # done #
       location = /favicon.ico {
                log_not_found off;
                access_log off;
       }
}