我在 Ubuntu 15.10 上有一个nginx
带有 的服务器php5-fpm
。以 结尾的文件.php
可以正常加载。HTML 文件可以正常加载。但是当我<?PHP ?>
在 html 文件中放入标签时,PHP 脚本无法正常加载。我在 nginx 或 php5-fpm 错误日志中看不到任何错误,这些错误无法说明问题。在浏览器中查看源代码会列出脚本的链接,而不是像我期望的那样运行脚本。
这是我的 nginx 配置:
#cat default
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /home/user/public_html;
index index.php index.html index.htm;
# server_name server_domain_name_or_IP;
location / {
try_files $uri $uri/ =404;
autoindex on;
}
error_page 404 /404.html;
error_page 500 502 503 504 /404.html;
location = /404.html {
root /home/user/public_html;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
错误php5-fpm
日志毫无用处:
$ sudo cat php5-fpm.log
[27-Dec-2015 07:55:13] NOTICE: error log file re-opened
nginx 错误日志同样没有帮助:
$ sudo cat nginx/error.log
2015/12/29 01:30:20 [notice] 13111#0: signal process started
(这是我重新加载 nginx 之后的情况)
查看nginx
访问日志,似乎 html 中的 PHP 脚本从未得到处理。除非像最后一条记录中那样直接调用:
var/log$ sudo cat nginx/access.log
...
192.168.1.10 - - [29/Dec/2015:01:35:32 -0500] "GET /Hnav/www/scripts HTTP/1.1" 301 193 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0"
192.168.1.10 - - [29/Dec/2015:01:35:32 -0500] "GET /Hnav/www/scripts/ HTTP/1.1" 200 312 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0"
192.168.1.10 - - [29/Dec/2015:01:35:34 -0500] "GET /Hnav/www/scripts/sidebar.php HTTP/1.1" 200 614 "http://192.168.1.10/Hnav/www/scripts/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0"
我已经忍受了一段时间,但我已经受够了。我真的希望<?PHP ?>
html 文件中的标签能够正常工作,但我完全陷入困境。我可以提供更多必要的详细信息,但我不知道接下来该怎么做。
答案1
打开文件/etc/php5/fpm/pool.d/www.conf
:
sudo nano /etc/php5/fpm/pool.d/www.conf
并.html
在以下行末尾添加:
security.limit_extensions = .php .php3 .php4 .php5 .html
答案2
打开你的 nginx conf 并在位置部分添加:|\.html
所以你的位置应该是这样的:
location ~ \.php$|\.html {
刚刚测试过,运行正常。在 security.limits_extensions 中添加 .html 对我来说不起作用。
答案3
这里提供的解决方案会导致所有 html 文件都由进程解释php-fpm
。除非你所有的 html 文件都包含 php,否则这样做效率不高。
更好的解决方案是修改您的网站,只要求包含 php 的文件经过额外的开销,例如通过使用扩展名命名它们.php
。