-
Hi all, I'm a little confused about why this is happening, it seems to be something to do with my piranha mvc project setup but I don't know why or how to fix it - I'm relatively new to web tech so please bear with me! Normally I deploy my asp.net core sites using IIS on a windows VM. I have bindings for both This isn't happening for my piranha project, and if I decorate the CMSController with Any idea why this is happening? I've tried a normal asp.net mvc project on the same domain name and it works as expected, but using the default piranha project seems to have some different settings. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Most templates provided by Microsoft contains the following line in the
Regards |
Beta Was this translation helpful? Give feedback.
Most templates provided by Microsoft contains the following line in the
Configure
method inStartup.cs
which will effectively redirect all requests tohttp
tohttps
. However our templates do not contain this by default, have you tried adding this line manually?Regards