jeudi 23 juin 2016

Nginx server laravel directory 404 error

Recently I have Installed Laravel in Nginx. Laravel application home page works fine but route page gets 404 error. my Nginx configuration is below:

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /var/www/html;
    index index.html index.htm index.php;

    server_name localhost;

    location / {
            try_files $uri $uri/ /index.php?$query_string;
            #try_files $uri $uri/ =404;
            #try_files $uri $uri/ /index.php$is_args$args;
    }
    error_page 404 /404.html;

    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
            root /var/www/html;
    }


    location ~ \.php$ {
            try_files $uri =404;
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
    }

}

When I access url like localhost/lar/public,it works fine. Routes are declared but when I access URL like localhost/lar/public/test, it gets 404 error .



from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/28Zwp45
via IFTTT

Aucun commentaire:

Enregistrer un commentaire