Actually, I didn't get SSL certificate till now, But when searching my website in search engines, its shows with https in URL. when clicking that link, it takes to error page since I didn't have SSL certificate.So I want to change that slug from https to HTTP. But I don't know where to change in my Cpanel. Is there anybody having a solution for my problem? please, let me come out from my problem.
Asked
Active
Viewed 333 times
0
-
Which web server are you using? Nginx, Apache or something else? – shaochuancs Apr 13 '17 at 06:38
1 Answers
0
you should add the following rewrite rule in your .htaccess file:
RewriteCond %{HTTP:X-Forwarded-Proto} =https
RewriteRule ^(.*)$ http:
If you want more refer here

Community
- 1
- 1

lalithkumar
- 3,480
- 4
- 24
- 40
-
Thank you lalith kumar, just i tried ur suggestion, but now also i am having the same issue? is there any other solution? – Tamil renu Apr 13 '17 at 06:23
-
refer this http://stackoverflow.com/questions/12999910/https-to-http-redirect-using-htaccess – lalithkumar Apr 13 '17 at 06:25
-
-
I referred that questions and used all those solutions, but still it's telling that "your connection is not private".@lalith kumar – Tamil renu Apr 13 '17 at 06:38
-
check these steps: http://www.zerodollartips.com/your-connection-is-not-private-chrome/ – lalithkumar Apr 13 '17 at 06:41
-
now its saying that "Sample "Hello, World" Application This is the home page for a sample application used to illustrate the source directory organization of a web application utilizing the principles outlined in the Application Developer's Guide. To prove that they work, you can execute either of the following links: To a JSP page. To a servlet." @lalithkumar – Tamil renu Apr 13 '17 at 06:55