欢迎光临
我们一直在努力

Laravel 的 Nginx 重写规则优化

文档那个上面比较简略,只有:

location / {
    try_files $uri $uri/ /index.php?$query_string;
}

您可以加上这些,让你的链接更加优雅

# 去除末尾的斜杠,SEO更加友好

if (!-d $request_filename)
{
    rewrite ^/(.+)/$ /$1 permanent;
}

# 去除index action

if ($request_uri ~* index/?$)
{
    rewrite ^/(.*)/index/?$ /$1 permanent;
}

# 根据laravel规则进行url重写

if (!-e $request_filename)
{
    rewrite ^/(.*)$ /index.php?/$1 last;
    break;
}
error_page 500 502 503 504 /50x.html;
    location = /50x.html {
    root html;
}

 

赞(0)
版权归原作者所有,如有侵权请告知。达维营-前端网 » Laravel 的 Nginx 重写规则优化

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址