Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to configure laravel to an existing site path in nginx

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "how to configure laravel to the existing site path in nginx". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "how to configure laravel to the existing site path in nginx".

Problem description:

How to configure laravel under the path of an existing site in nginx

Now the configuration file is as follows, and there is already a site working. Create a new laravel project in another path: / var/www/html/laravel.

How can I configure to access sms.dev/laravel/path properly?

Server {listen 80; server_name sms.dev; index index.php index.html index.htm; root / var/www/html/sms; location / laravel/ {# how to configure here?} location ~. *\. (php | php5)? ${fastcgi_pass 127.0.0.1 server_name sms.dev; index index.php index.html index.htm; root 9000 Fastcgi_index index.php; include fcgi.conf;} if (!-e $request_filename) {return 404;}}

Solution:

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 }} at this point, I believe you have a deeper understanding of "how to configure laravel to the existing site path in nginx". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report