Heim > Fragen und Antworten > Hauptteil
Nginx.
Ursprüngliche URL:
http://www.domain name.com/news/aaa.html
http://www.domain name.com/product/aaa/bbb/xxx.html
Es ist notwendig, die Webseiten in den beiden Verzeichnissen /news/ und /product/ auf die folgende URL umzuleiten:
http://www.domain name.com/old/news/aaa.html
http:// www.Domainname .com/old/product/aaa/bbb/xxx.html
大家讲道理2017-05-16 17:24:58
rewrite ^/(news|product)/(.*)$ /old/$1/$2 permanent last;
放server块里。随手写的,没测试。
天蓬老师2017-05-16 17:24:58
server {
server_name www.xxx.com xxx.com;
if ($host != 'www.xxx.com' ) {
rewrite ^/(.*)$ http://www.xxx.com/$1 permanent;
}
}
关键在 permanent
子目录跳转:
location ~* ^/news/ {
rewrite ^/news/(.*)$ http://www.xxx.com/old/news/$1 permanent;
}