我有旧项目,现在需要新的功能,我将使用laravel提供它,一切正常在xampp与apache工作,但我的服务器con nginx显示我访问被拒绝的消息,无法访问我的路线,我应该如何如果在mysite.com/2015中安装了laravel,我的网站配置如下,我改变了什么showld?我试过了
location /newsection/ {
try_files $uri $uri/ /newsection/public/index.php$request_uri;
}
Run Code Online (Sandbox Code Playgroud)
但它会导致500错误
server {
listen 80;
server_name am2.aminversiones.com;
root /home/forge/am2.aminversiones.com;
# FORGE SSL (DO NOT REMOVE!)
# ssl_certificate;
# ssl_certificate_key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
index index.html index.htm index.php;
charset utf-8;
client_max_body_size 300M;
location / {
#try_files $uri $uri/ /index.php?$query_string;
try_files $uri $uri/ /index.php?q=$uri&$args;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/am2.aminversiones.com-error.log error;
error_page 404 /index.php;
location …Run Code Online (Sandbox Code Playgroud) 我在app文件夹中创建了一个库文件夹来添加我的应用程序库.我已经更新了应用程序配置文件和composer.json以自动加载该文件夹,但是当我运行该命令时,composer dump-autoload我得到了下一个错误:
{"error":{"type":"Symfony\\Component\\Debug\\Exception\\FatalErrorException","message":"Class 'App\\Libraries\\Search\\SearchServiceProvider' not found","file":"D:\\Users\\Miguel Borges\\Documents\\Trabalhos\\Tese\\portal\\bootstrap\\compiled.php","line":4130}}PHP Fatal error: Class 'App\Libraries\Search\SearchServiceProvider' not found in D:\Users\Miguel Borges\Documents\Trabalhos\Tese\portal\bootstrap\compiled.php on line 4130 [Finished in 1.1s with exit code 255]
我的app文件夹树:
app
| ...
+ libraries
| + search
| | - Search.php
| | - SearchFacade.php
| | - SearchServiceProvider.php
| + lib2
| | - ...
| + lib3
| | - ...
| | - Theme.php
| - ...
- filters.php
- routes.php
Run Code Online (Sandbox Code Playgroud)
SearchServiceProvider.php
namespace App\Libraries\Search;
use Illuminate\Support\ServiceProvider;
class …Run Code Online (Sandbox Code Playgroud)