
nginx 有沒有辦法將除主頁之外的所有內容重定向到domain1.com 到domain2.com ?
現在我有:
server {
listen 80;
server_name www.domain1.com domain1.com;
rewrite ^ http://domain2.com$uri permanent;
}
這可行,除了我想要http://domain1.com(沒有任何附加路徑)單獨保留且不重定向。基本上,我需要重定向所有內容,以避免連結損壞,但我想使用 domain1 的主頁來提供靜態檔案。
答案1
這應該可以解決問題。
server {
listen 80;
server_name www.domain1.com domain1.com;
location = / {
index static.file; # CHANGE THIS
root /path/to/root/; # CHANGE THIS
}
location / {
rewrite ^ http://domain2.com$uri permanent;
}
}