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.
例から始めます。
入力 URI:
http://website.com/search/some-search-keywords
書き換えられた URI:
http://website.com/search.php?q=some-search-keywords
書き換えルール:
rewrite ^/search/(.*)$ /search.php?q=$1?
とはどういう意味ですか? 誰かが私に説明または参照を与えることができることを理解していませんか?どうもありがとうございました!
http://nginx.org/r/rewrite
置換文字列に新しいリクエスト引数が含まれている場合、以前のリクエスト引数がその後に追加されます。これが望ましくない場合は、置換文字列の末尾に疑問符を付けることで、それらが追加されるのを回避できます
公式ドキュメントを読むことは常に良い考えです。