🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
安装宝塔查看下面网址: [https://www.bt.cn/bbs/thread-19376-1-1.html](https://www.bt.cn/bbs/thread-19376-1-1.html) 推荐使用宝塔管理工具,方便。 ## **centos系统** 安装nginx1.16+mysql5.6+php5.6+Memcached1.5。 登陆宝塔面板,软件商城。 ![](https://img.kancloud.cn/7a/a0/7aa0cfe844224f7d46fa110ca7f81f34_2336x532.png) ![](https://img.kancloud.cn/b2/b5/b2b5de3dae165270fd400314d94229c9_2300x104.png) ![](https://img.kancloud.cn/53/9c/539cbbe410fdf7549ae0bfdb30ce222e_2284x122.png) 安装之后还需要安装php扩展ZendGuardLoader+memcache。禁用函数里面可以都删掉。 ![](https://img.kancloud.cn/36/22/36225cd7a5e7a5d8ab6be24410024534_1252x818.png) 完成环境安装。 nginx配置增加一个h5端的配置。 ``` location /h5/ { try_files $uri $uri/ @router;#需要指向下面的@router否则会出现vue的路由在nginx中刷新出现404 index index.html index.htm; } #对应上面的@router,主要原因是路由的路径资源并不是一个真实的路径,所以无法找到具体的文件 #因此需要rewrite到index.html中,然后交给路由在处理请求资源 location @router { rewrite ^.*$ /h5/index.html last; } ``` ## **Windows系统上稍有区别** 安装Nginx 1.17+MySQL 10.1.21-MariaDB+PHP-5.4+Memcached 1.4.4 登陆宝塔面板,软件商城。 ![](https://img.kancloud.cn/c0/72/c0722e57ad0101aeab4e412fd5229e9b_2302x78.png) ![](https://img.kancloud.cn/c6/dd/c6ddf882bd5dd4314ab53b0527023ddb_2288x80.png) ![](https://img.kancloud.cn/b6/10/b6107f679d5226be5bbd348b18703dca_2294x80.png) ![](https://img.kancloud.cn/46/6b/466bc7f95aa0b28cb9b66f4b64a2ec56_2306x86.png) 安装之后还需要安装php扩展ZendGuardLoader+memcache。禁用函数里面可以都删掉。 ![](https://img.kancloud.cn/14/6e/146eef94153baa2820d931baef6ae7f4_1282x1136.png) 完成环境安装。 nginx配置增加一个h5端的配置。 ``` location /h5/ { try_files $uri $uri/ @router;#需要指向下面的@router否则会出现vue的路由在nginx中刷新出现404 index index.html index.htm; } #对应上面的@router,主要原因是路由的路径资源并不是一个真实的路径,所以无法找到具体的文件 #因此需要rewrite到index.html中,然后交给路由在处理请求资源 location @router { rewrite ^.*$ /h5/index.html last; } ```