Rumah > Soal Jawab > teks badan
Nginx.
URL asal:
http://www.nama domain.com/news/aaa.html
http://www.nama domain.com/product/aaa/bbb/xxx.html
Adalah perlu untuk mengubah hala halaman web dalam dua direktori /berita/ dan /produk/ ke URL berikut:
http://www.domain name.com/old/news/aaa.html
http:// www.nama domain .com/old/product/aaa/bbb/xxx.html
大家讲道理2017-05-16 17:24:58
rewrite ^/(news|product)/(.*)$ /old// permanent last;
Letakkannya dalam blok pelayan. Hanya menulisnya secara santai, tidak diuji.
天蓬老师2017-05-16 17:24:58
server {
server_name www.xxx.com xxx.com;
if ($host != 'www.xxx.com' ) {
rewrite ^/(.*)$ http://www.xxx.com/ permanent;
}
}
Kuncinya ialah permanent
Lompatan subdirektori:
location ~* ^/news/ {
rewrite ^/news/(.*)$ http://www.xxx.com/old/news/ permanent;
}