欢迎来到代码驿站!

Nginx

当前位置:首页 > 服务器 > Nginx

Laravel的Nginx重写规则实例代码

时间:2021-07-12 13:30:00|栏目:Nginx|点击:

laravel基本重写规则

location / {
    index index.html index.htm index.php;
    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;
}

错误信息跳转页面必须在location ~ \.php(.*)${}里面加入条:fastcgi_intercept_errors on开启错误检测信息

#nginx错误信息跳转自定义页面50x.html自己随便定义

error_page 404 500 502 503 504 error.html;
location = error.html {
    root  html;
}

root是error文件的根目录

总结

上一篇:nginx实现tomcat动静分离详解

栏    目:Nginx

下一篇:Nginx 502 Bad Gateway错误常见的4种原因和解决方法

本文标题:Laravel的Nginx重写规则实例代码

本文地址:http://www.codeinn.net/misctech/156283.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有