image.png
nginx配置
- rewrite实现
location / {
root /home/wwwroot/test;
index index.php index.html;
if ( ! -e $request_filename ) {
rewrite (.*)$ /index.php/$1;
}
}
- try_files实现
location / {
root /home/wwwroot/test
index index.php index.html
try_files $uri /index.php?$uri;
}