📜  laravel nginx - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:51.780000             🧑  作者: Mango

代码示例1
# If you are using Nginx, the following directive in your site 
# configuration will direct all requests to the index.php 
# front controller:

location / {
    try_files $uri $uri/ /index.php?$query_string;
}