您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了laravel之nginx配置站點的示例,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶大家一起來研究并學習一下“laravel之nginx配置站點的示例”這篇文章吧。
Laravel 是一套簡潔、優雅的PHP Web開發框架。它可以讓你從面條一樣雜亂的代碼中解脫出來;它可以幫你構建一個完美的網絡APP,而且每行代碼都可以簡潔、富于表達力。
前言
設置laravel項目的域名站點的時候,需要對nginx做一些對應的重寫rewrite配置,用來做相關路由,否則會報404。
nginx.conf配置
server { listen 80; server_name xxx.com; #域名 root /data/www/myProject/blog/public; #站點目錄,請求到laravel項目的public目錄 index index.html index.htm index.php; #默認請求的文件 location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } location / { try_files $uri $uri/ /index.php?$query_string; # 這一句是laravel部署必須的,將index.php隱藏掉 } 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; } location = /50x.html { root html; } }
操作及實例
1.對nginx.conf重寫站點后,要重啟nginx:
sudo nginx -s reload
2.以laravel5.2版本為例,模擬輸出hello world,可以在laravel項目中app/Http/routes.php中定義一個hello的路由:
Route::get('/hello', function(){ return 'hello world'; });
3.瀏覽器輸入xxx.com/hello即可在瀏覽器打印出hello world
以上就是關于“laravel之nginx配置站點的示例”的內容,如果改文章對你有所幫助并覺得寫得不錯,勞請分享給你的好友一起學習新知識,若想了解更多相關知識內容,請多多關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。