Laravel的Nginx配置
server {
listen 80;
server_name tool.lu;
root /data/html/tool.lu/public;
index index.html index.php;
location / {
try_files $uri $uri/ /index.php$is_args$query_string;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
if (!-f $request_filename)
貌似并不是一个好的做法
server {
listen 80; server_name tool.lu; root /data/html/tool.lu/public; location / { try_files $uri /index.php; } location /index.php { fastcgi_pass 127.0.0.1:9000; include fastcgi.conf; }}
太激进了,如果是为了缩短长度,完全没有必要
还是累赘