🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
以下为PC端商城独立站点配置流程,请参考: 1.解析域名 参考教程:http://jingyan.baidu.com/article/1e5468f97c9072484861b761.html 2.配置虚拟主机 如服务器已安装面板,推荐使用面板添加虚拟主机,绑定目录为:addons/superman_mall/pcmall,以下为不同服务器的配置参考教程 IIS:http://jingyan.baidu.com/article/a24b33cd55c7ba19ff002b4b.html Apache:http://jingyan.baidu.com/article/9113f81b2700852b3214c797.html Nginx:http://blog.csdn.net/mengxiangbaidu/article/details/7022978 以下截图为Nginx虚拟主机配置文件参考,截图配置文件见最下方 ![](https://superman.kf5.com/attachments/download/3564334/0015926882d4b3ec803464eae3d8ddb/) 3.重启web服务器 4.绑定域名 商城后台=》设置=》PC端设置=》基本设置 ![](https://box.kancloud.cn/9cd800d288462e32614f214c61634a80_1116x263.png) 5.访问域名验证 6.提示报错 设置多个域名后,商户管理员扫码绑定微信的时候总是提示:redirect_url错误 ,可在设置=》基本设置=》绑定网址,填写绑定微信公众平台的网址,如截图 ![](https://superman.kf5.com/attachments/download/3445801/00158f884d77452334e128389820b15/) 附件:pcmall_domain_com.conf 代码如下 server {         listen      80;         server_name pcmall.domain.com;         root /www/web/pcmall_domain_com/public_html/addons/superman_mall/pcmall;         index  index.html index.php index.htm;         location ~ \.php$ {             fastcgi_pass   127.0.0.1:9000;             fastcgi_index  index.php;             include fcgi.conf;             fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/:/www/web/pcmall_domain_com/public_html/";         } }