配置静态站点,有些时候需要返回固定页面,访问url: /site/pageA /site/pageB 都返回index.html页面,这时候需要用到下面配置
location / {
try_files $uri /index.html;
}
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
配置静态站点,有些时候需要返回固定页面,访问url: /site/pageA /site/pageB 都返回index.html页面,这时候需要用到下面配置
location / {
try_files $uri /index.html;
}