如何将uniapp生成的h5网站添加到thinkphp框架下的首页?
1 将public下入口文件重新命名为home.php
2 设置伪静态 这里已nginx为案例
location / {if (!-e $request_filename){rewrite ^(.*)$ /home.php?s=$1 last; break;}}
此时可以访问正常访问网站了 但由于缺失默认index文件导致404
3 将uniapp生成的h5文件里的index.html 上传到网站根目录 此时可以正常打开uniappH5首页了
4 打开其他页面包含pages/路由的页面 将提示无法找到pages模块 那么只要在nginx里将这个pages目录排除掉 并指想index.html即可
那么在thinkphp伪静态前添加一条排除伪静态即可
location ~* ^/pages/ { default_type text/html; alias /www/wwwroot/网站目录/public/index.html;}
来源地址:https://blog.csdn.net/u010417783/article/details/127835434