新增网站,添加index.php 和index.html都是 403或者 404
新增网站,添加index.php 和index.html都是 403或者 404
段大帅 2021-04-29 15:49:192楼
server{
listen 80 ;
server_name test ;
root /www/admin/test_80/wwwroot/ ;
#301重定向
#rewrite ^(.*)$ $1 permanent;
#强制SSL
#rewrite ^(.*)$ https://$host$1 permanent;
#防盗链
location / {
#伪静态
#include /www/admin/test_80/wwwroot/.rewrite.conf;
#首页
root /www/admin/test_80/wwwroot/;
index index.php index.html error/index.html;
}
#流量限制
#日志
access_log /www/admin/test_80/log/nginx_access_$logdate.log main;
error_page 403 /error/403.html;
error_page 400 /error/400.html;
error_page 404 /error/404.html;
error_page 502 /error/502.html;
error_page 503 /error/503.html;
#处理PHP
location ~ [^/]\.php(/|$) {
root /www/admin/test_80/wwwroot/;
fastcgi_pass 127.0.0.1:7221;
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
include fastcgi.conf;
}
#DenyFiles
location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
{
return 404;
}
}
赞 +添加回复
Peter·Python 已被采纳 2021-04-29 15:38:391楼
路径不对
赞 +添加回复