开始之前
- 强烈建议不喜欢折腾的同学给
H5
前端单独部署一个站点,配置好域名,并且强烈建议配置好https
- 生成海报前,请先把 后台 -》 商城配置 -》商城信息-》分享设置,配置正确
后端
创建站点,并且配置好 https
前端的伪静态(使用history模式)
Nginx配置
location / {
try_files $uri $uri/ /index.html last;
index index.html;
}
重启 Nginx!!!
Apache配置
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.html [L]
</IfModule>
前端
前端H5配置
调试 H5
发布 H5
- 填写 网站名称标题
还没有评论呢,快来抢沙发~