我正在尝试以下重写规则:
location / {
index index.php index.html;
rewrite ^/test$ /test.php break;
}
我也有:
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME /home/sites/default$fastcgi_script_name;
fastcgi_index index.php;
}
正常的php文件可以正常工作,但是似乎我的重定向只是下载要重定向到的php文件,而不是解析它。
我想念什么?我加载了文件,而不是通过在第一个位置块中放入fastcgi来下载文件,但仍然没有将其解析为php。