Jump to content

Presta not making SSL sitmap


shahriar

Recommended Posts

I bought SSL certificate for my shop from my host , but when you visitings a page of any products you will get in right down of your browser " Contains unauthenticated content " , when you check source of the page of product still http and when you generate sitemap with presta all the link is http but when you making sitemap with site that make for you sitemap the making Https !!!

any one have an idea why it is like that ???? or how i can fix this problem ?

Link to comment
Share on other sites

Exactly the problem site map not using Site URL !! another problem is i have to redirect http://www.vagmecard.com to https://www.vgamecard.com that it take usage from my host and host replied for me the
"he redirect is fine, but you should ask the provider of the software you're using how to configure it so that the links are written as https:// in the first place so that multiple requests aren't required for every resource on the page. This will result in a speed improvement, and reduce our server usage without requiring that portions of your store be served unsecurely"

and i don't know what can i do with this one ?

Link to comment
Share on other sites

I just went to your site and noticed that when I enter http, I am automatically redirected to https. Also, your signature has https in your URL. Perhaps that is why search engines are putting https on the URLs? Check your .htaccess file and remove any code that is redirecting to https.

Link to comment
Share on other sites

Exactly i wanted to do it but my technical of my host support said no need no redirect.it is exactly the reply of them "The redirect is fine, but you should ask the provider of the software you're using how to configure it so that the links are written as https:// in the first place so that multiple requests aren't required for every resource on the page. This will result in a speed improvement, and reduce our server usage without requiring that portions of your store be served unsecurely."

and this one another "When you go to http://vgamecard.com the page changes in the address bar to https://vgamecard.com

and it's because of this code in the .htaccess file:

RewriteCond %{HTTP_HOST} ^(www.)?vgamecard.com$
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)$ https://www.vgamecard.com/$1 [L,R]

Perhaps someone was helping you with your site but that is what your site does."

and when i asked to remove the code they replied "No, the agent who suggested removing the redirect misspoke"!!

Link to comment
Share on other sites

Try using the following code in your .htaccess file instead:

RewriteCond %{http_host} ^vgamecard.com [nc]
RewriteRule ^(.*)$ http://www.vgamecard.com/$1 [r=301,nc]



This will redirect all URLs with www to www. If you are still getting a warning message, you must have code that is getting content with SSL when it should be using SSL.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...