タグ

ブックマーク / qiita.com/zakihaya (1)

  • nginxでlocationを使う時の演算子 - Qiita

    # 「=」は完全一致。/index.phpにしか反応しない location = /index.php { } # 無印は前方一致、但し正規表現より弱い location /index.php { } # 「^~」も前方一致、こちらは正規表現より強い location ^~ /index.php { } # 「~」はcase sensitive(大文字と小文字を別に扱う)な正規表現 location ~ ^/index\.php$ { } # 「~*」はcase insensitive(大文字と小文字を区別しない)な正規表現 location ~* ^/index\.php$ { }

    nginxでlocationを使う時の演算子 - Qiita
    jsstudy
    jsstudy 2018/12/13
    locationディレクティブではURIのパスの前に"=", "~", "~*", "^~"の4種類のプレフィックスを付けることができます。# 「=」は完全一致。/index.phpにしか反応しない location = /index.php { }
  • 1