在线主机中将NGINX重写为Laravel 5

ahm*_*eed 2 php nginx url-rewriting laravel laravel-5

我想知道在线主机中Nginx服务器的配置文件的路径,以从URL中删除index.php.

因为ex http://site/public/index.php/more应转换为http://site/more

ssu*_*hat 6

在Nginx上,站点配置中的以下指令将允许"漂亮"的URL:

location / {
    try_files $uri $uri/ /index.php?$query_string;
}
Run Code Online (Sandbox Code Playgroud)

http://laravel.com/docs/5.0/installation#pretty-urls