I have written such a php code statement to connect a Windows Azure storage account. But when I run it, it causes the page redirection.
$blob = new Microsoft_WindowsAzure_Storage_Blob(
'blob.core.windows.net',
'http://myaccount.blob.core.windows.net/',
'myaccountkey'
);
I couldn't solve the problem.
How can I fix this?
Thank you...