我想两个不同的网址http://example.com和http://example.com/admin-dsahboard当我打http://example.com/admin-dsahboard我可以看到管理员dsahboard面板,但在地址栏中显示http://example.com,/管理员 Jmeter 板是missiing所以当我重新加载页面它重新加载到前端网站
server {
listen 80;
server_name example.com;
location / {
root /path/to/file/;
index index.html;
}
location /admin-dashboard/ {
root /path/to/file/;
try_files $uri $uri/ /admin-dashboard/index.html;
} try_files $uri $uri/ /index.html;
}
1条答案
按热度按时间dsf9zpds1#
我认为
try_files
导致地址栏无法更新。更简单的方法应该有效: