【发布时间】:2010-10-04 15:10:46
【问题描述】:
大家好, 我正在尝试将 /blog 重定向到 blog.mysubdomain.com 这是我的 nginx conf 中的位置部分:
location /blog {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect false;
proxy_pass http://blog.letitcast.com;
}
你可以看看这里:http://letitcast.com/blog
它可以工作,但没有 CSS,我无法访问 /blog/wp-admin
你有什么想法吗?
谢谢
【问题讨论】:
标签: nginx reverse-proxy