1、nginxWeb 服务器将所有请求定向至你应用程序的 public/index.php 文件。配置文件中需要配置重写规则
location / { try_files $uri $uri/ /index.php?$query_string; }
2、ApacheWeb 服务器将所有请求定向至你应用程序的 public/index.php 文件确保配置文件中已经开启.htaccess