沒部署過,都是給后端干的,自己嘗試部署了一個下午終于成功了
我遇到的最大的bug是進入后只有首頁正常顯示 其他頁面全是404,于是問問問才知道,需要這個
? ? ? ? location / {
? ? ? ? ? ? try_files $uri $uri/ /index.html;
? ? ? ? }
?讓進入非index的頁面能返回主頁執行js的路由跳轉配置
server{listen 80;server_name phpmyadmin;root /www/wwwroot/KeyBoardthe-front;index index.html index.htm index.php;# error_page 404 /404.html;include enable-php.conf;location / {try_files $uri $uri/ /index.html;}....