Home  >  Article  >  php教程  >  Laravel4 nginx rewrite配置

Laravel4 nginx rewrite配置

WBOY
WBOYOriginal
2016-06-06 20:12:27864browse

采用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;
}
}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn