• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

larval 路由只有 '/' 可以访问,其他路由都是404

php 搞代码 3年前 (2022-01-25) 25次浏览 已收录 0个评论
文章目录[隐藏]

<body>

环境是 nginx+php-fpm
nginx配置如下:

路由配置:
Route::get(‘/’, function () {

<code>return view('welcome');</code>

});

Route::get(‘hello’,function(){

<code>return 'hello world';</code>

});

回复内容:

<body>

环境是 nginx+php-fpm
nginx配置如下:

路由配置:
Route::get(‘/’, function () {

<code>return view('welcome');</code>

});

Route::get(‘hello’,function(){

<code>return 'hello world';</code>

});

放我的给你参考一下

<code>server{    listen       80;    server_name  Xx<i>*本5文来源gaodai$ma#com搞$$代**码)网@</i><img>搞代码gaodaima</img>x.xxx.com;    index index.php index.html index.htm;    root  /xxx/xxx/xxx/public;    access_log  /xxx/xxx/xxx.log  access;  location ~ .*\.(php)?$  {    try_files $uri = 404;    fastcgi_pass  unix:/tmp/php-cgi.sock;    fastcgi_index index.php;    include fcgi.conf;  }  location / {    if (!-e $request_filename){        rewrite ^/(.*)$ /index.php?s=/$1 last;    }    #try_files $uri $uri/ /index.php?$query_string;  }}</code>

你设置rewrite了吗

去掉rewrite,看看


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:larval 路由只有 '/' 可以访问,其他路由都是404

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址