我使用nginx服务器在fastcgi上配置了php。我的文件夹结构是
index.php
_include
css
js
img
当css和img文件位于_include中的_include或子目录下时返回404但是当我移动到根路径时它们正在加载正常。其中js文件加载正常,即使它们在子目录中。 。 在我的nginx服务器conf下面
server {
listen 80 default_server;
listen [::]:80 default_server;
# include /etc/nginx/mime.types;
root /var/www/html;
index index.php index.html index.htm index.nginx-debian.html;
server_name examplesite.com;
location / {
try_files $uri $uri/ = 404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
尝试堆栈溢出和其他论坛的所有解决方案,但没有运气。请帮忙。