我刚刚在我的ubunutu 14.04 lts中设置了nginx web服务器,带有新的laravel项目。我的项目名称 laravel ,当我转到 http://localhost/laravel/public/ 时,我可以看到laravel欢迎页面显示,但是当我创建一个网址来测试它时不起作用
Route::get('test', function(){
return 'It is work!!!';
});
我希望当我去http://localhost/laravel/public/test | http://localhost/laravel/public/index.php/test
时,它应该显示这是工作!!! 而不是我得404 Not Found nginx/1.4.6 (Ubuntu)
。
我不知道出了什么问题?
我在我的机器上安装了php7 ubuntu 1.4.6
。
这是nginx配置 - >
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.php index.html index.htm;
server_name localhost;
location / {
#try_files $uri $uri/ =404;
try_files $uri/ $uri /index.php?$query_string;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
try_files $uri /index.php =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php;
include fastcgi_params;
}
}
请帮帮我。我非常感谢你的帮助。
答案 0 :(得分:1)
看来波格丹已在评论中回答了这个问题。但对于其他任何人,请确保将您的文档根目录指向Laravel项目的/ public目录。
/* prototype function */
void push(double elmt,stack *c);
/*main program*/
int main(void)
{
char a;
double b;
stack c;
c.top=-1;
printf("will you insert a data (Y/N) ?\n");
scanf("%c",&a);
while (a=='Y'){
printf("insert your data :\n");
scanf("%lf",&b);
push (b,&c);
printf("your data is : %.2f",c.arr[c.top]);
printf("current stack size : %d",c.top);
if(c.top!=size){
printf("will you insert a data (Y/N) ?\n");
scanf("%s",&a);
}
}
return 0;
}
/* Implementation */
void push(double elmt, stack *c)
{
if(c->top!=size) {
c->top = c->top + 1;
c->arr[c->top] = elmt;
}
else {
printf("Stack is full\n");
}
}