Resource Path Addressing
How to configure Resource Path Addressing.
To configure the AWS .NET SDK to use Resource Path Addressing instead of Virtual Host Addressing, set the ForcePathStyle of AmazonS3Config property to true:
AmazonS3Config S3Config = new AmazonS3Config
{
// replace below url with your endpoint
ServiceURL = "http://192.168.1.1,
// Add below to use resource style addressing
ForcePathStyle = true"
}