nginx + php 的配置
程序员文章站
2022-04-29 18:25:13
...
location ~ \.php$ { root /home/jsckdao/www; #这是你网站的根目录 fastcgi_pass 127.0.0.1:3344; #这里指定了fastcgi进程侦听的端口,nginx就是通过这里与php交互的 fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_scrip
location ~ \.php$ {
root /home/jsckdao/www; #这是你网站的根目录
fastcgi_pass 127.0.0.1:3344; #这里指定了fastcgi进程侦听的端口,nginx就是通过这里与php交互的
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
include fastcgi_params;
}
上一篇: 让html页面不缓存js的实现方法_javascript技巧
下一篇: PHP中PDO的基础使用实例