微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

nginx 配置laravel框架域名配置

server {
        listen       80;
        server_name  admin.meiquick.local.com;

        #charset koi8-r;

       # access_log /var/log/Nginx/admin.meiquick.local.access.log  main;
       # error_log  /var/log/ngix/admin.meiquick.local.error.log  main;
       
        location  / {
	    try_files $uri $uri/ /index.PHP?$query_string; # 如果除了 / 其他路由出现404 not found 则添加
            root   /usr/local/Nginx/html/logistics/public;
            index  index.html index.htm index.PHP;
        }
	
        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.PHP$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.PHP(.*)$ {
            root           /usr/local/Nginx/html/logistics/public;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.PHP;
	    fastcgi_split_path_info  ^((?U).+\.PHP)(/?.+)$; #出现 404 500 则配置 
            #fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            fastcgi_param  SCRIPT_FILENAME  /usr/local/Nginx/html/logistics/public$fastcgi_script_name; #出现 404 file not fond 则配置
            include        fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with Nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }

  

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐