php 第2页

Xenforo Nginx Apache 靜態化

location ~ \.php$ { try_files $uri =404; include /etc/nginx/fastcgi_params; fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_...
Burn的头像-THE FREE SKYBurn3月18日 18:44
04350

Chevereto Nginx 伪静态规则

location / { if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-f $request_filename){...
在路上的头像-THE FREE SKY在路上3月4日 02:37
06037

宝塔面板PHP7.3缺少ZIP的解决方法

因早期安装的Php7.3是独立编译zip扩展,后续安装及升级是整合编译的,导致升级后会重复加载zip模块。 解決方法 cd /www/server/php/73/src/ext/zip/ /www/server/php/73/bin/phpize ./configure...
二進制的头像-THE FREE SKY二進制2月1日 14:06
05670

WordPress Nginx伪静态

先建立一个nginx.conf 文件,然后填入以下内容: location / { index index.html index.php; if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_fil...
七叔的头像-THE FREE SKY七叔7月15日 08:29
05890

宝塔面板安装yaf扩展不生效的解决办法

如果你在PHP的扩展中安装了yaf却不生效,那么需要打开PHP配置,添加以下代码: [yaf] extension=yaf.so yaf.environ='product' yaf.use_namespace=1 然后重启PHP即可生效
感情程序无法操控的头像-THE FREE SKY感情程序无法操控3月25日 17:04
010490