對於Nginx我很新,所以請耐心等待。Nginx將所有來自子目錄的請求重定向到另一個子目錄根
我試圖將所有請求從一個子目錄(存儲)重定向到另一個子目錄(貿易)的根目錄。看到我的進展如下。目標子目錄(貿易)中的站點是一個magento站點,因此這是目前大部分規則的用處。
server {
server_name example.com *.example.com;
root /usr/share/nginx/html/example.com/public_html;
index index.php index.html index.htm;
access_log /var/log/nginx/example.access.log;
error_log /var/log/nginx/example.error.log;
location/{
try_files $uri $uri/ /index.html;
}
location /trade/ {
index index.html index.php;
try_files $uri $uri/ @handler;
expires 30d;
}
location ~ /store {
rewrite /trade permanent;
}
location ~ ^/trade/(app|includes|lib|media/downloadable|pkginfo|report/config.xml|var)/ { internal; }
location /trade/var/export/ { internal; }
location /. { return 404; }
location @handler { rewrite//trade/index.php; }
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
我使用重定向的部分如下:
location ~ /store {
rewrite /trade permanent;
}
這適用於example.com/store而不是例如/存儲/ index.php文件或任何其他URI以ARGS。我有一種感覺,底部的php文件部分覆蓋了處理。這就是爲什麼我把商店位置放在前面,因爲文檔here聲明這將首先被處理。處理過程是否停止或繼續?
我已閱讀關於嵌套的PHP規則,但我試過這個無濟於事。
我將不勝感激任何幫助。
什麼樣的參數? –
舉例url將是http://www.example.com/store/index.php?page=shop.product_details&flypage=flypage.tpl&category_id=365&product_id=8025&option=com_virtuemart&Itemid=101 – user1214769