ThinkSSL🔒 一键申购 5分钟快速签发 30天无理由退款 购买更放心 广告
#### 1、页面链接展示的是微信公众号渠道和微信小程序渠道的页面链接 ## 没有微信公众号渠道和微信小程序渠道的的话会显示空白 ![](https://img.kancloud.cn/7f/36/7f36c19f6b20bae5a021b33633ea765c_1920x916.png) #### 如果出现短链接报错,需要在宝塔配置一下伪静态 #### 宝塔linux ![](https://img.kancloud.cn/2b/5b/2b5bd5eb2698d9bed77e053535a11572_1769x836.png) ![](https://img.kancloud.cn/cb/78/cb7898f332f51b6d64a60a6d138f6add_1782x835.png) nginx(微擎版): rewrite "^/(\\S{1,7}(?<!web|/|h5))$" /addons/weliam\_areashop/web/index.php?s=shortUrl&code=$1 last; nginx(独立版): rewrite "^/(\\S{1,7}(?<!web|/|h5))$" /web/index.php?s=shortUrl&code=$1 last; apache(微擎版): RewriteEngine on RewriteRule ^(\\S{1,7}(?<!web|/|h5))$ /addons/weliam\_areashop/web/index.php?s=shortUrl&code=$1 \[L\] apache(独立版): RewriteEngine on RewriteRule ^(\\S{1,7}(?<!web|/|h5))$ /web/index.php?s=shortUrl&code=$1 \[L\]