當前位置:編程學習大全網 - 網站源碼 - 誰用過phpword使用$PHPWord

誰用過phpword使用$PHPWord

配置 Nginx

Nginx 的配置很簡單:

view sourceprint?

1

location ~ \.php$ {

2

#root html;

3

root /var/www/html;

4

fastcgi_pass 127.0.0.1:9000;

5

fastcgi_index index.php;

6

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

7

include fastcgi_params;

8

}

OK,重啟 Nginx 完成配置:

1

service nginx restart

  • 上一篇:ASP代碼加密工具的軟件介紹
  • 下一篇:php 後臺怎麽開壹個進程監聽Redis的隊列消息呢?用while
  • copyright 2024編程學習大全網