如題,請問大大這個可行嗎?可行的話怎么實現(xiàn)呢?
可以,nginx配置類似
server { root /home/www/; server_name example.com;
location / { if (!-e $request_filename) { proxy_pass http://127.0.0.1:8080; } }
}
謝謝.
不客氣