排序
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_...
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){...
宝塔面板PHP7.3缺少ZIP的解决方法
因早期安装的Php7.3是独立编译zip扩展,后续安装及升级是整合编译的,导致升级后会重复加载zip模块。 解決方法 cd /www/server/php/73/src/ext/zip/ /www/server/php/73/bin/phpize ./configure...
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...
宝塔面板安装yaf扩展不生效的解决办法
如果你在PHP的扩展中安装了yaf却不生效,那么需要打开PHP配置,添加以下代码: [yaf] extension=yaf.so yaf.environ='product' yaf.use_namespace=1 然后重启PHP即可生效