fastadmin需要php,fastadmin修改后台入口提示 模块不存在:admin.php

  • Post author:
  • Post category:php


安装完 fastadmin

修改后台入口文件为 admin.php

访问 /admin.php/index/login?url=%2Fadmin.php 提示 模块不存在:admin.php

断点发现没有走 public/admin.php 这个文件

请问是哪里出了问题?

server {

listen 80;

server_name fastadmin.test;

root “****/public”;

index index.html index.htm index.php;

location / {

try_files $uri $uri/ /index.php$is_args$args;

# autoindex on;

if (!-e $request_filename){

rewrite ^(.*)$ /index.php?s=$1 last; break;

}

}

location ~ \.php$ {

include snippets/fastcgi-php.conf;

fastcgi_pass php_upstream;

#fastcgi_pass unix:/run/php/php7.0-fpm.sock;

}

charset utf-8;

location = /favicon.ico { access_log off; log_not_found off; }

location = /robots.txt { access_log off; log_not_found off; }

location ~ /\.ht {

deny all;

}

}