标签:index.php rup 缩略图 生成 uri style drupal7 sites try_files
正常设置了图像的样式,并且为内同类型正确设置了显示的样式。但是上传图片后,却并没有在对应的文件夹下生成对应的缩略图。自然没有显示。
网上查询了一下,需要为nginx添加两个设置:
location @rewrite { rewrite ^/(.*)$ /index.php?q=$1; } location ~ ^/sites/.*/files/styles/ { try_files $uri @rewrite; }
重启nginx,ok~成功了
标签:index.php rup 缩略图 生成 uri style drupal7 sites try_files
原文地址:https://www.cnblogs.com/zjfblog/p/9223633.html