门口的小白 发表于 2019-2-27 00:24:53

centOS 7 lnmp 装 Laravel 框架

已经修改了nginx.conf 文件 如下 为什么 网页输入localhost.index.php 没有跳转Laravel首页
server
    {
      listen 80 default_server;
      #listen [::]:80 default_server ipv6only=on;
      server_name localhost;
      index index.html index.htm index.php;
      root/home/wwwroot/default/bloga/public;

      #error_page   404   /404.html;

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

licess 发表于 2019-2-27 09:59:52

localhost 只能在你安装lnmp的本机上才是可以的
lnmp模式下这种跨目录读取的都是需要去掉防跨目录设置的
没有具体错误信息的话也不好判断
页: [1]
查看完整版本: centOS 7 lnmp 装 Laravel 框架