本來應該回傳json數據,卻回傳了index.html,專案在本地跑是可以的,但是發到伺服器後就出現了這樣的錯誤,求解
nginx配置
server {
listen 80;
server_name www.xxxx.cn;
root /data/www/blog/;
location / {
try_files $uri $uri/ /index.html;
}
}
伺服器的打包後目錄為static和index.html, 代理程式到打包後的index.html,所以為text/html/etc/nginx/mime.types設定###
type {
text/html html htm shtml
}