我正在嘗試弄清楚如何設定try_files
以與我的 php url 重定向腳本一起使用。
php 腳本的工作方式如下:
mydomain.com/test
其中test
是別名,必須如下處理:
location / {
try_files $uri = /redirect.php?alias=$request_uri;
}
這裡運作良好,測試被送到redirect.php
處理 別名範圍。
但我在瀏覽子資料夾時遇到問題mydomain.com/stats/
——它不起作用。
任何幫助將不勝感激!
先感謝您!
答案1
你應該添加一些location
:
location /stats {
alias /directory/where/stats;
}