我们正在运行 Nginx+FastCgi 作为我们 Drupal 站点的后端。一切似乎都很好,除了这个网址。http:///sites/all/modules/tinymce/tinymce/jscripts/tiny_mce/plugins/smimage/index.php
(我们在 Drupal 中使用 TinyMCE 模块,当用户尝试上传图片时会调用上面的 url)
当我们使用 Apache 时,一切正常。但是,nginx 会处理上面的 url Binary 并尝试下载它。(我们已经验证了 url 指向的文件是一个有效的 PHP 文件)
知道这里可能有什么问题吗?
我认为这与 NGINX 配置有关,但不完全确定那是什么。
任何帮助是极大的赞赏。
配置:这是来自 nginx 配置文件的片段:
root /var/www/;
index index.php;
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?q=$1 last;
}
error_page 404 index.php;
location ~*
\.(engine|inc|info|install|module|profile|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template)$
{
deny all;
}
location ~* ^.+\.(jpg|jpeg|gif|png|ico)$ {
access_log off;
expires 7d;
}
location ~* ^.+\.(css|js)$ {
access_log off;
expires 7d;
}
location ~ .php$ {
include /etc/nginx/fcgi.conf;
fastcgi_pass 127.0.0.1:8888;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
}
location ~ /\.ht {
deny all;
}