解説
1 2 3 4 5 6 7 8 |
set $base /public/; location @index_php { rewrite . ${base}index.php last; } #uriの中身がファイルとして存在してなかったら@index_phpを見に行く try_files $uri @index_php; |
1 2 3 4 5 6 7 8 |
set $base /public/; location @index_php { rewrite . ${base}index.php last; } #uriの中身がファイルとして存在してなかったら@index_phpを見に行く try_files $uri @index_php; |