nginx:如何创建别名 url 路由? [英] nginx: how to create an alias url route?

查看:24
本文介绍了nginx:如何创建别名 url 路由?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

基本上一个服务器实例运行在

basically an server instance is running at

somesite.com/production/folder/here?param=here&count=1

我想将 someite.com/demo 指向 /production/folder/here 以便当用户键入 somesite.com/production/demo?param=此处 无需重定向到 /production/folder/here

I want to point someite.com/demo to /production/folder/here so when user types somesite.com/production/demo?param=here it will work without redirecting to /production/folder/here

推荐答案

server {
  server_name example.com;
  root /path/to/root;
  location / {
    # bla bla
  }
  location /demo {
    alias /path/to/root/production/folder/here;
  }
}

如果你需要在 /demo 中使用 try_files 你需要用 root 替换 alias并由于错误在此处解释

If you need to use try_files inside /demo you'll need to replace alias with a root and do a rewrite because of the bug explained here

这篇关于nginx:如何创建别名 url 路由?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆