安装 joomla 时,我遇到了与响应标头相关的问题。
在安装过程中,一个ajax post请求发送到服务器,响应状态303
不是200
!所以ajax回调不会触发并且安装中断。
我认为这个问题与 nginx 配置有关,因为我在 apache 本地服务器上对其进行了测试,并且那里没有问题。
nginx访问日志:
POST /installation/index.php HTTP/1.1" 303 5 "http://.../installation/index.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36"
apache(本地)访问日志:
"POST /joomla-test/installation/index.php HTTP/1.1" 200 286
nginx 配置:
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
#fastcgi_pass_header Status; <-- tested but not work !
include fastcgi.conf;
}