Production never redirect to https even api is enable for https redirectHow to change the default behaviour for customErrors pages in Asp.NetHttpStatusCodeResult(401) returns “302 Found”ASP.Net Web API HTTP Verb URL not working from REST ClientIdentity Server 3 Authentication/Authorization, with ASP.NET CORE 1.0using http method except actions on web apiAzure Storage Queue poor performance - only 200 RPSAlways 404 status code on AllowAnonymous action in dual authentication type asp.net core 2 projectasp.net api redirect external url'Failed to authenticate HTTPS connection' while accessing ASP.NET Core 2.1 Web API from React NativeI am trying to Turn off Cors

How can I remove studs and screws from the inside of drywall when installing a pocket door without needing to do paint and patch work on both sides?

Are there any English words pronounced with sounds/syllables that aren't part of the spelling?

Reissue US, UK, Canada visas in stolen passports

Is it better to deliver many low-value stories or few high-value stories?

Did Don Young threaten John Boehner with a 10 inch blade to the throat?

How can I show that the speed of light in vacuum is the same in all reference frames?

What does a Nintendo Game Boy do when turned on without a game cartridge inserted?

Host telling me to cancel my booking in exchange for a discount?

What is the metal bit in the front of this propeller spinner?

is FIND WORDS in P?

Can a creature sustain itself by eating its own severed body parts?

Do I care if the housing market has gone up or down, if I'm moving from one house to another?

Why did modems have speakers?

"It is what it is"

Is it ethical to tell my teaching assistant that I like him?

Quickest way to move a line in a text file before another line in a text file?

Can the caster of Time Stop still use their bonus action or reaction?

Is there a guide to help me transition from PSTricks to TikZ?

Can I use Sitecore's Configuration patching mechanics for my Identity Server configuration?

Counterexample finite intersection property

1025th term of the given sequence.

Why was Quirrell said to be in the Black Forest if Voldemort was actually in Albania?

Has Iron Man made any suit for underwater combat?

If hash functions append the length, why does length extension attack work?



Production never redirect to https even api is enable for https redirect


How to change the default behaviour for customErrors pages in Asp.NetHttpStatusCodeResult(401) returns “302 Found”ASP.Net Web API HTTP Verb URL not working from REST ClientIdentity Server 3 Authentication/Authorization, with ASP.NET CORE 1.0using http method except actions on web apiAzure Storage Queue poor performance - only 200 RPSAlways 404 status code on AllowAnonymous action in dual authentication type asp.net core 2 projectasp.net api redirect external url'Failed to authenticate HTTPS connection' while accessing ASP.NET Core 2.1 Web API from React NativeI am trying to Turn off Cors






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am working on asp.net core 2.1 API. The api is working as expected on all environment. recently we enable it for HSTS headers. so added below code in startup.cs -> ConfigureServices method



services.AddHsts(options =>

options.Preload = true;
options.IncludeSubDomains = true;
);
services.AddHttpsRedirection(options =>

options.RedirectStatusCode = StatusCodes.Status301MovedPermanently;
options.HttpsPort = int.Parse(443);
);


When I check response from postman on dev environment for http request
it give me 302 redirect status code. which is as expected



But on Production for http request,
It gives me 404 File or directory not found.



'''''''''''''''''''''
In Configure method we have
'''''''''



app.UseHsts()
.UseHttpsRedirection();


I am expecting that on Production also I should get 302 status code instead of 404.



Did I miss any other setting. Why postman is show 404 on production but 302 on dev envirment when code is same on both envirment










share|improve this question






















  • Why 302 when your code shows 301?

    – Barry Pollard
    Mar 26 at 15:22

















0















I am working on asp.net core 2.1 API. The api is working as expected on all environment. recently we enable it for HSTS headers. so added below code in startup.cs -> ConfigureServices method



services.AddHsts(options =>

options.Preload = true;
options.IncludeSubDomains = true;
);
services.AddHttpsRedirection(options =>

options.RedirectStatusCode = StatusCodes.Status301MovedPermanently;
options.HttpsPort = int.Parse(443);
);


When I check response from postman on dev environment for http request
it give me 302 redirect status code. which is as expected



But on Production for http request,
It gives me 404 File or directory not found.



'''''''''''''''''''''
In Configure method we have
'''''''''



app.UseHsts()
.UseHttpsRedirection();


I am expecting that on Production also I should get 302 status code instead of 404.



Did I miss any other setting. Why postman is show 404 on production but 302 on dev envirment when code is same on both envirment










share|improve this question






















  • Why 302 when your code shows 301?

    – Barry Pollard
    Mar 26 at 15:22













0












0








0








I am working on asp.net core 2.1 API. The api is working as expected on all environment. recently we enable it for HSTS headers. so added below code in startup.cs -> ConfigureServices method



services.AddHsts(options =>

options.Preload = true;
options.IncludeSubDomains = true;
);
services.AddHttpsRedirection(options =>

options.RedirectStatusCode = StatusCodes.Status301MovedPermanently;
options.HttpsPort = int.Parse(443);
);


When I check response from postman on dev environment for http request
it give me 302 redirect status code. which is as expected



But on Production for http request,
It gives me 404 File or directory not found.



'''''''''''''''''''''
In Configure method we have
'''''''''



app.UseHsts()
.UseHttpsRedirection();


I am expecting that on Production also I should get 302 status code instead of 404.



Did I miss any other setting. Why postman is show 404 on production but 302 on dev envirment when code is same on both envirment










share|improve this question














I am working on asp.net core 2.1 API. The api is working as expected on all environment. recently we enable it for HSTS headers. so added below code in startup.cs -> ConfigureServices method



services.AddHsts(options =>

options.Preload = true;
options.IncludeSubDomains = true;
);
services.AddHttpsRedirection(options =>

options.RedirectStatusCode = StatusCodes.Status301MovedPermanently;
options.HttpsPort = int.Parse(443);
);


When I check response from postman on dev environment for http request
it give me 302 redirect status code. which is as expected



But on Production for http request,
It gives me 404 File or directory not found.



'''''''''''''''''''''
In Configure method we have
'''''''''



app.UseHsts()
.UseHttpsRedirection();


I am expecting that on Production also I should get 302 status code instead of 404.



Did I miss any other setting. Why postman is show 404 on production but 302 on dev envirment when code is same on both envirment







asp.net core hsts






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 26 at 13:29









SanketSanket

395 bronze badges




395 bronze badges












  • Why 302 when your code shows 301?

    – Barry Pollard
    Mar 26 at 15:22

















  • Why 302 when your code shows 301?

    – Barry Pollard
    Mar 26 at 15:22
















Why 302 when your code shows 301?

– Barry Pollard
Mar 26 at 15:22





Why 302 when your code shows 301?

– Barry Pollard
Mar 26 at 15:22












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55358394%2fproduction-never-redirect-to-https-even-api-is-enable-for-https-redirect%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55358394%2fproduction-never-redirect-to-https-even-api-is-enable-for-https-redirect%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript