xlnmp 发表于 2020-4-1 15:58:48

lnmp一键安装后访问项目除了首页没事,别的页面yang shi路...

本帖最后由 xlnmp 于 2020-4-1 16:08 编辑

请大佬帮我看一下谢谢了;是什么问题呢?本地是没有问题的。
项目除首页外别的页面样式都多了两层,前台的话(home/控制器);
如:http://IP地址/Home/User/Public/home/css/myb-axc.css
正确的地址是:http://IP地址/Public/home/css/myb-axc.css


下斜线的是我加的;
      listen 80 default_server reuseport;
      #listen [::]:80 default_server ipv6only=on;
      server_name _;
      index index.php index.html index.htm;
      root/var/www/novel;

      #include enable-php.conf;
      location / {
               # root    $root;
               # index   index.html index.php;
                if ( -f $request_filename) {
                        break;
                }
                if ( !-e $request_filename) {
                        rewrite ^/(.*)$ /index.php/$1 last;
                        break;
                }
      }
      location ~ [^/]\.php(/|$)
      {
            #try_files $uri =404;
            fastcgi_passunix:/tmp/php-cgi.sock;
            fastcgi_index index.php;
            include fastcgi.conf;
            include pathinfo.conf;
      }

      location /nginx_status
      {
            stub_status on;
            access_log   off;
      }

xlnmp 发表于 2020-4-1 18:12:05

已经解决,找到php.ini 修改cgi.fix_pathinfo=1 就可以了。
页: [1]
查看完整版本: lnmp一键安装后访问项目除了首页没事,别的页面yang shi路...