Hii sir my post link is not working

Website URL

Sir my website and my 2 post link mytechnos.com/top-5-gaming-laptop/ and mytechnos.com/smart-phones-under-15000/ both post link showing

If i open my link it is showing not secured what should i do sir

See these:

5 Likes

Sir i done ssl certificate connection but than also it is showing same

You will need to create a .htaccess file in your root htdocs folder (the folder where you put your web files) and write rules to force it to put all traffic thru https.
Here is the code you will need to put into the .htaccess file:

RewriteEngine On 
RewriteCond %{HTTPS} off 
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Please let me know if the above code does not work.
Also, when you are using SSL certificates, I suggest using https protocol in all kinds of links you might have on your website.

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.