这让我很困惑。当我访问该域时,它会下载该index.php
文件。当我访问 domain/index.php 时,它工作正常。我试图在这里和那里发表评论,只是无法修复它。这个是Zend Framework 3
。我在同一台服务器上有其他 php 站点。他们很好。我现在开始怀疑它是 ZF3 的特别之处。
我的 nginx 是这样的:
server {
listen 80;
server_name xxx.xxx.com;
index index.php index.html;
root /data/www/xxx/public;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME /data/www/xxx/public/index.php;
}
access_log logs/worth.jusfeel.cn.log main;
}
我也尝试过其他设置。一样的。地址栏中的 url 变为..domain/index.php
,但仍下载index.php
文件。
server {
listen 80;
server_name www.example.com;
root /var/www/www.example.com/myapplication;
index index.html index.htm index.php;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}