試圖看看這是否可能。nginx相同的位置,但有不同的指令
我們有一個應用程序和wordpress安裝。
是否可以在同一個文件夾中使用2個位置,但在不同情況下。例如..
http://domain.com/subfolder/ - 這顯示了APP http://domain.com/subfolder/anything - 這說明WP永久
現在,我們有這麼
http://domain.com/subfolder(不帶/)顯示應用
http://domain.com/subfolder/(帶/)顯示WP。
這並不工作,但它是可能有它的話,它只會顯示WP如果該URL後,子文件夾/ *
當前的Nginx的conf包含文本:
location ^~ /knowledge {
root /opt/domain.com/public/;
try_files $uri @backend;
}
location /knowledge/ {
index index.php index.html index.htm;
root /opt;
include /etc/nginx/php-wpsc.conf;
try_files $uri $uri/ /knowledge/index.php?q=$uri&$args;
}