리자

https 에서 www 있는 도메인을 없는 도메인으로 rewrite 또는 redirect 하기

· 2021-03-11 (목) 16:53:25 · 3101 · 4

Nginx 설정 입니다.

 

 

...

 

    server {
       listen         80;
       server_name    your-domain.com www.your-domain.com;

       rewrite ^/(.*) https://your-domain.com/$1 permanent;
    }

 

    server {
        listen        443 ssl;
        server_name   www.your-domain.com;

        ssl_certificate          conf.d/your-domain.com.crt.pem;
        ssl_certificate_key      conf.d/your-domain.com.key.pem;
        ssl_trusted_certificate  conf.d/your-domain.com.ca-chain-bundle.pem;

        rewrite ^/(.*) https://your-domain.com/$1 permanent;
    }

 

    server {
        listen        443 ssl;
        server_name   your-domain.com;
        root          /home/your-domain/www;

        ssl_certificate          conf.d/your-domain.com.crt.pem;
        ssl_certificate_key      conf.d/your-domain.com.key.pem;
        ssl_trusted_certificate  conf.d/your-domain.com.ca-chain-bundle.pem;

 

...

|

댓글 4개

2021-03-14 (일) 21:43:24
좋은 정보 감사합니다.
살펴 보도록 하겠습니다.
알려 주셔서 감사합니다.
필요했었는데.. 정보 감사합니다.
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
OS 23-03-13 조회 1,558
웹서버 23-03-13 조회 1,675
웹서버 23-03-13 조회 1,808
PHP 23-03-13 조회 1,624
PHP 23-03-13 조회 1,646
PHP 23-03-13 조회 1,653
PHP 23-03-13 조회 1,602
PHP 23-02-23 조회 1,617
JavaScript 23-02-23 조회 1,657
PHP 23-02-23 조회 2,519
웹서버 23-02-23 조회 1,595
PHP 23-02-23 조회 1,759
PHP 23-02-21 조회 1,607
node.js 23-02-15 조회 2,078
OS 23-02-10 조회 2,298
웹서버 23-02-08 조회 1,647
PHP 23-02-07 조회 7,962
JavaScript 23-01-31 조회 2,482
PHP 23-01-26 조회 1,669
PHP 23-01-03 조회 2,302
JavaScript 23-01-02 조회 1,556
PHP 23-01-02 조회 1,665
웹서버 22-12-14 조회 3,299
기타 22-11-29 조회 2,311
JavaScript 22-11-24 조회 1,965
PHP 22-11-07 조회 2,290
MySQL 22-11-01 조회 2,470
PHP 22-10-31 조회 2,744
PHP 22-10-16 조회 2,777
JavaScript
[JavaScript]
22-10-04 조회 1,834