nginx将请求全部指向到html下的index.html页面
转: https://blog.csdn.net/z8853797/article/details/53898031
server {
listen 80;
server_name localhost;
location / {
try_files '' /index.html;
}
location =/index.html {
index index.html index.htm;
}
}
记录一些技术资料等等
转: https://blog.csdn.net/z8853797/article/details/53898031
server {
listen 80;
server_name localhost;
location / {
try_files '' /index.html;
}
location =/index.html {
index index.html index.htm;
}
}