Heim > Fragen und Antworten > Hauptteil
Die ursprüngliche Adresse lautet http://aaa.com/aaa.swf
Die neue Adresse lautet http://bbb.com/bbb (kein .swf, das Programm lädt es automatisch)
Wie können wir in diesem Fall beim Zugriff auf die Quelladresse das automatische Laden neuer Adressen (keine Sprünge) erreichen?
滿天的星座2017-05-16 17:30:42
location ~ ^/aaa.swf {
root /var/www/bbb.com # the local file path of bbb
# use rewrite to map aaa.swf to bbb
}
仅有的幸福2017-05-16 17:30:42
如果不在同一台主机上,可以通过反向代理来实现
在bbb.com
的server {}
块中加入如下语句即可。
location / {
if ($uri = /bbb)
{
rewrite ^/bbb$ /aaa.swf break;
proxy_pass http://aaa.com;
}
}