首頁  >  文章  >  php框架  >  laravel在nginx中能配置到已有站點路徑嗎?

laravel在nginx中能配置到已有站點路徑嗎?

藏色散人
藏色散人轉載
2021-11-24 15:47:472115瀏覽

以下由Laravel教學專欄帶大家介紹關於laravel怎麼在nginx配置到一個已有網站的路徑下,希望對大家有幫助!

問題描述:

laravel 如何在nginx中配置到一個已經有的網站的路徑下

現在設定檔如下,已經有一個站點在工作了。新建了一個laravel的工程,在其他路徑:/var/www/html/laravel.

如何配置才能正常存取sms.dev/laravel/path ?

server{
        listen 80;
        server_name sms.dev;
        index index.php index.html index.htm;
        root /var/www/html/sms;
        location /laravel/ {
            # 这里如何配置呢?
        }
        location ~ .*\.(php|php5)?$
        {
                fastcgi_pass  127.0.0.1:9000;
                fastcgi_index index.php;
                include fcgi.conf;
        }
        
        if (!-e $request_filename) {
                return 404;
        }
}

#解決方法:

location ^~ /app/ {
    alias /var/www/laravel/public/;
    if (!-e $request_filename) { rewrite ^ /app/index.php last; }
    location ~ \.php$ {
        if (!-f $request_filename) { return 404; }
        include snippets/fastcgi-php.conf;
        fastcgi_param SCRIPT_FILENAME $request_filename;
        fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    }
}

【相關推薦:最新的五個Laravel影片教學

以上是laravel在nginx中能配置到已有站點路徑嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除