Redirect from https to http
-
hi all In my application there several web pages the last page is payment page(credit card) which is a secure page that is its url is https. but when i click on any link to return to other pages its still shows https. although all links accept the payment page is http. Then also it shows https once i visit the payment page and try to click a link for other pages. so how to remove that https to http for other pages. Pl help Regards
Prakash Mishra(Banglore,India)
-
hi all In my application there several web pages the last page is payment page(credit card) which is a secure page that is its url is https. but when i click on any link to return to other pages its still shows https. although all links accept the payment page is http. Then also it shows https once i visit the payment page and try to click a link for other pages. so how to remove that https to http for other pages. Pl help Regards
Prakash Mishra(Banglore,India)
Prakash_Mishra wrote:
but when i click on any link to return to other pages its still shows https.
Append http to the links present in that secure page instead of redirecting like
/page.aspx
-
hi all In my application there several web pages the last page is payment page(credit card) which is a secure page that is its url is https. but when i click on any link to return to other pages its still shows https. although all links accept the payment page is http. Then also it shows https once i visit the payment page and try to click a link for other pages. so how to remove that https to http for other pages. Pl help Regards
Prakash Mishra(Banglore,India)
You are using relative url i.e. "..\otherpages.asp" so after you visit the https page other consequent pages will be assumed to be of the same protocol will be used last (https). Use absolute url (e.g. "http://www.codeproject.com/otherpage.asp" ) on the links of other pages. Cheers Raz
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
-
You are using relative url i.e. "..\otherpages.asp" so after you visit the https page other consequent pages will be assumed to be of the same protocol will be used last (https). Use absolute url (e.g. "http://www.codeproject.com/otherpage.asp" ) on the links of other pages. Cheers Raz
/* Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA */
Thanks a lot
Prakash Mishra(Banglore,India)
-
Prakash_Mishra wrote:
but when i click on any link to return to other pages its still shows https.
Append http to the links present in that secure page instead of redirecting like
/page.aspx
Thanks a lot
Prakash Mishra(Banglore,India)