导航首页 » 网站公告 » 导航秒收录系统,Nginx伪静态配置
导航秒收录系统,Nginx伪静态配置

导航秒收录系统,Nginx伪静态配置:

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