nginxで、どのURL(パス)でもindex.phpに渡す設定のメモ

あんまり使うことは無いけど、
「とりあえずまずはindex.phpを通せ。話はそれからだ。」的な処理を作らないといけない場合もたまーにあるのでメモメモ。

location / {
  root /home/hogehoge/public_html;
  index index.html index.htm index.php;
  try_files $uri $uri/ /index.php?path=$uri&$args;
}

大阪の江坂でウェブ制作をしている、インフラもシステムもデザインもディレクションもできるエンジニア。 広く浅く薄っぺらくですが(笑)

Leave a reply:

Your email address will not be published.