破解方法
1.使用 zibll 主题站点同服务器搭建一个新站点。
2.新站绑定 api.zibll.com 域名,并开启 SSL(随便找个域名的证书就行)。
3.上传源码 zibll_7.6_hosts.zip 到新站点并解压。
4.新站设置以下伪静态规则。
nginx 伪静态:
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php/$1 last; break;
}
}
Apache 伪静态:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
5.在服务器 /etc/hosts 里面加一行
127.0.0.1 api.zibll.com
© 版权声明
THE END
- 最新
- 最热
只看作者