分类: Linux

4 篇文章

PHP 7.4 开启 mbstring 拓展
[toc] 安装拓展 进入拓展源码目录 cd /usr/local/src/php-7.4.14/ext/mbstring /usr/local/php74/bin/phpize 输出 Configuring for: PHP Api Version: 20190902 Zend Module Api No: 20190902 Zend Exten…
http 跳转 https
nginx 1、使用nginx的rewrite方法 配置nginx.conf server { listen 80; server_name xxx.com; rewrite ^(.*)$ https://$host$1 permanent; } 2、使用nginx的301状态码 server { listen 80; listen 443; se…