我正在努力为使用动态文件夹名称创建Nginx规则。 我有2个应用程序:
app1: /
app2: /resident
他们有以下网址:
app1:
/dashboard
/login
app2:
/resident/dashboard
/resident/login
到目前为止,我设法让Nginx工作,将/
发送到/var/www/app1
,将/resident
发送到/var/www/app2
。
现在,我们需要在URL中添加客户名称。像这样:
app1:
/:customer/dashboard
/:customer/login
app2:
/:customer/resident/dashboard
/:customer/resident/login
:customer
将是一个变量,它仍然应该转到同一个文件系统文件夹:
/:customer/
=> /var/www/app1
和/:customer/resident
=> /var/www/app2
我尝试了不同的方法,不同的正则表达式/订单。没有成功。