时间:2021-05-19
配置文件改成这样
server { listen 80; server_name sub.domain.com; set $root_path '/srv/www/default'; root $root_path; index index.php index.html index.htm; try_files $uri $uri/ @rewrite; location @rewrite { rewrite ^/(.*)$ /index.php?_url=/$1; } location ~ \.php { fastcgi_pass 127.0.0.1:9000; fastcgi_index /index.php; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } location ~* ^/(css|img|js|flv|swf|download)/(.+)$ { root $root_path; } location ~ /\.ht { deny all; } }在CentOS7.1+Nginx1.8.0+Laravel5.0测试通过
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了Laravel框架实现文件上传的方法。分享给大家供大家参考,具体如下:配置文件:config/filesystems.php,新建存储空间'upl
本文实例讲述了Laravel框架环境与配置操作。分享给大家供大家参考,具体如下:Laravel5安装根目录下.env文件是配置文件。打开config/datab
本文实例讲述了laravel框架数据库配置及操作数据库。分享给大家供大家参考,具体如下:laravel数据库配置数据库配置文件为项目根目录下的config/da
漏洞描述:Nginx默认是以CGI的方式支持PHP解析的,普遍的做法是在Nginx配置文件中通过正则匹配设置SCRIPT_FILENAME。当访问http://
路由要从httpredirect到https,可以改nginx/apache配置。如果不想在webserver中做这些修改配置,可以尝试在laravel框架中解