在浏览器栏中隐藏文件夹路径和文件名

在浏览器栏中隐藏文件夹路径和文件名

我有一个在 nginx 上托管的非常简单的静态站点。

一切正常,但我想清理浏览器栏中显示的路径,以便它只显示example.com而不是example.com/index.html#someanchor

该网站在其自己的 HTML 文件中有几个子页面,但我仍然希望始终只显示“根域”。

这个问题似乎很难捉摸,因为我在 Google 上找不到任何关于如何解决这个问题的答案。

这是我的站点可用配置文件中的服务器块:

server {
        listen 80;
        listen [::]:80;


        root /var/www/example.com;

        index index.html index.htm index.nginx-debian.html;

        server_name example.com;

        location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to displaying a 404.
                try_files $uri $uri/ =404;
        }

}

相关内容