我想将example.com/1.0引导到一个laravel应用程序,将example.com/1.1引导到另一个laravel应用程序。如果给出了example.com,则默认情况下应将其重定向到example.com/1.1。我使用nginx作为Web服务器。配置中的位置块如下所示。
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
include fastcgi_params;
fastcgi_pass unix:/run/php/php7.1-fpm.sock;
fastcgi_index index.php;
try_files $uri =404;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
limit_req zone=one burst=15 nodelay;
}
location = /50x.html {
root html;
}
根和索引直接在443服务器块中指定,而不是在/.
的另一个位置块内如何实现这一目标?任何建议都将不胜感激。