gpt4 book ai didi

php - 使用 Nginx 设置 Laravel

转载 作者:IT王子 更新时间:2023-10-28 23:57:59 25 4
gpt4 key购买 nike

我正在尝试设置 Laravel适用于 Nginx 的 PHP 框架.这是我的目录结构:

/project
/application
/laravel
/public
index.php
/legacy
/index.php
/stylesheets
default.css

基本上我有一个标准的Laravel下载一个 legacy 文件夹,其中包含我的非 MVC 项目中的所有文件。

我需要 Nginx 首先检查请求的页面/文件是否存在于 legacy 中,如果存在,那么我想使用它。否则,我想返回到位于 project/public/ 中的 Laravel 的 index.php 文件。

我不是 Nginx 配置方面的专家,因此非常感谢您提供的任何帮助。

最佳答案

server {
server_name .laravel.dev;
root /home/tamer/code/laravel/public;

index index.php index.html;

#browse folders if no index file
autoindex on;

# serve static files directly
location ~* \.(jpg|jpeg|gif|css|png|js|ico|html)$ {
access_log off;
expires max;
}

# removes trailing slashes (prevents SEO duplicate content issues)
if (!-d $request_filename)
{
rewrite ^/(.+)/$ /$1 permanent;
}

# enforce NO www
if ($host ~* ^www\.(.*))
{
set $host_without_www $1;
rewrite ^/(.*)$ $scheme://$host_without_www/$1 permanent;
}


# canonicalize codeigniter url end points
# if your default controller is something other than "welcome" you should change the following
if ($request_uri ~* ^(/lobby(/index)?|/index(.php)?)/?$)
{
rewrite ^(.*)$ / permanent;
}

# removes trailing "index" from all controllers
if ($request_uri ~* index/?$)
{
rewrite ^/(.*)/index/?$ /$1 permanent;
}

# unless the request is for a valid file (image, js, css, etc.), send to bootstrap
if (!-e $request_filename)
{
rewrite ^/(.*)$ /index.php?/$1 last;
break;
}

# catch all
error_page 404 /index.php;

location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/tmp/php.socket;
fastcgi_index index.php;
#include fastcgi_params;
include /home/tamer/code/nginx/fastcgi_params;
}
access_log /home/tamer/code/laravel/storage/logs.access.log;
error_log /home/tamer/code/laravel/storage/logs.error.log;
}

关于php - 使用 Nginx 设置 Laravel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8856664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com