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

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

问题描述

基本上服务器实例在

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

我想将someite.com/demo指向/production/folder/here,因此当用户键入somesite.com/production/demo?param=here时,它将可以工作而无需重定向到/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,则需要将alias替换为root,并由于错误

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天全站免登陆