Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
nginx( version >1 ) rewrite を使って 書き換えたい
www.domain.com/local/airports/jfk-2/ として www.domain.com/local/airports/jfk/
上記のような場所が多すぎます。
私は運が悪くても以下を試しました ^/local/airports/(.*)/ /local/airports/$1-2/ permanent;
この仕事を得る最良の方法は何ですか?ありがとう
これは少し具体的なリダイレクトですが、私が理解している限り、これ以上のものは必要ありません
location /local/airports/(.*)-2 { return 301 http://example.com/local/airports/$1; }