1. 先打开 nginx 配置文件 default
cd /etc/nginx/sites-available/
2. 编辑 default 文件
sudo vi default
3. server 内的 location /{ ... } 加入
try_files $uri $uri/ /index.php?$args;
完成如下:
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.php index.htm;
# Make site accessible from http://localhost/
server_name localhost;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
#try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php?$args;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}