0
使用cookie可以重定向到其他域名嗎?我嘗試followong。使用cookies重定向
def test_redirect
response.headers['Cache-Control'] = 'no-cache, no-store, must-revalidate'
response.headers['Pragma'] = 'no-cache'
response.headers['Expires'] = '0'
request.cookies[:foo] = {value: 'Viktor is here!', domain: '.google.com'}
redirect_to 'http://google.com/'
end
但沒有奏效。我的cookie不出現。