syyzw2010 发表于 2018-10-11 20:23:00

lnmp1.5 安装yii2 高级版问题

lnmp1.5 安装yii2 高级版问题

nginx.conf 中配置如此,其他没有做任何修改。
现在出现如下问题:
1.如图中的root 地址,直接访问域名是直接报错的,反之修改为默认的,不报错;
2.yii2中的路由跳转不过去,只能访问首页,其他页面均报错,显示404;
小弟才开始学,请大神赐教。
server
    {
      listen 80 default_server;
      #listen [::]:80 default_server ipv6only=on;
      server_name _;
      index index.html index.htm index.php;
      root/home/wwwroot/default/advanced/frontend/web/;
      #error_page   404   /404.html;

      # Deny access to PHP files in specific directory
      #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

      include enable-php.conf;
      include rewrite/yii2.conf;


      location /nginx_status
      {
            stub_status on;
            access_log   off;
      }

      location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
      {
            expires      30d;
      }

      location ~ .*\.(js|css)?$
      {
            expires      12h;
}

licess 发表于 2018-10-12 13:22:38

1、lnmp模式下直接改root肯定是会报错的,lnmp官网上查找 防跨目录设置去掉防跨目录设置或者修改里面的网站路径
2、这个不清楚

syyzw2010 发表于 2018-10-12 13:56:58

谢谢军哥,删除.user.ini文件即可删除了
页: [1]
查看完整版本: lnmp1.5 安装yii2 高级版问题