nginx配置 php 单入口

时间:2023-03-08 17:52:12

location / {
            root   html;
            index  index.html index.htm index.php;

if (!-e $request_filename) {
                rewrite ^(.*)$ /index.php last;
                break;
            }
        }