哪吒机器人提醒:

提醒:adam's blog
【标题】nginx 代理要点一则
【摘要】从apache迁移到nginx. rewrite 和 proxy方面有些地方需要注意。在apache里 rewrite和proxy可以合并成一条语句。比如在apache里RewriteEngine OnRewriteRule pic/(\d+)\.html http://backend-server/cgi/pic.php?id=$1 [P]换成nginx可以这么写location /picture/{ rewrite pic/(\d+)\.html /cgi/pic.php?id=$1;}location /cgi/pic.php{ proxy_pass http://backend-server;}... (04-13 17:11)