Nginx
在Nginx中,使用如下站点配置指令就可以支持URL美化:
```
location / {
try_files $uri $uri/ /index.php?$query_string;
}