ThinkSSL🔒 一键申购 5分钟快速签发 30天无理由退款 购买更放心 广告
## ### **一. PHP 版本 >= 7.1.0** # ### **二. 安装前必须进行伪静态配置:** # #### **Nginx:** ``` location / { if (!-e $request_filename){ rewrite ^(.*)$ /index.php?s=$1 last; break; } } ``` # # #### **Apache:** ``` <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L] </IfModule> ```