欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

Laravel4 nginx rewrite配置

程序员文章站 2022-04-27 20:18:47
...

采用php-fpm方式解释php,socket方式监听 nginx.conf示例: worker_processes??1; events?{ worker_connections??1024; } server?{ listen???????80; server_name??xxxx; #charset?utf-8; root???html/laravel/public; index??index.html?index.php; #?强制去

采用php-fpm方式解释php,socket方式监听

nginx.conf示例:
worker_processes??1;

events?{
worker_connections??1024;
}

server?{

listen???????80;
server_name??xxxx;

#charset?utf-8;
root???html/laravel/public;
index??index.html?index.php;

#?强制去除www
if?($host?~*?^www\.(.*))
{
set?$host_without_www?$1;
rewrite?^/(.*)$?$scheme://$host_without_www/$1?permanent;
}

#?处理静态文件
location?~*?\.(jpg|jpeg|gif|css|png|js|ico|html)$?{
access_log?off;
expires?max;
}

#?去除末尾的斜杠,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;
}

location?~?\.php$?{
include?fastcgi.conf;
fastcgi_pass?unix:/var/run/php5-fpm.sock;
fastcgi_index?index.php;
include?fastcgi_params;
}

location?~?/\.ht?{
deny??all;
}
}