ryanrajpoot
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to enable pinch zoom on website for mobile devices?Thanks for the response, i will replace my code with yours and let you know the effect.
Forum: Fixing WordPress
In reply to: Redirected HTTP to HTTPs with htaccess but not showingThanks for giving your precious time and valuable suggestion.
Forum: Fixing WordPress
In reply to: Redirected HTTP to HTTPs with htaccess but not showingOK, i thinking to add new HTTPS URL and it’s updated sitemap. Is it right?
Forum: Fixing WordPress
In reply to: Redirected HTTP to HTTPs with htaccess but not showingThe site is currently added to Google Webmaster Tools as http://www.pnrstatusbuzz.in and all the pages are indexed without using SSL. Do I just submit a updated sitemap which has the HTTPS URLs or Do I add a new site as https://www.pnrstatusbuzz.in and submit the sitemap with HTTPS urls?
Forum: Fixing WordPress
In reply to: Redirected HTTP to HTTPs with htaccess but not showingThank you for your response, can I ask you one more thing.
Forum: Fixing WordPress
In reply to: Redirected HTTP to HTTPs with htaccess but not showingIt wasn’t showing https but after clearing cache, it started showing. After posting question, i read somewhere for clearing cache and uncheck the box for “Warn me when websites try to redirect or reload the page”. This problem is solved and now what about the google.
Forum: Fixing WordPress
In reply to: Redirected HTTP to HTTPs with htaccess but not showingYeah, that’s right. You make my point clear…
I intended to redirect non-www to www and http to https. For that I have used below code and it’s resolving perfectly. Please check whether code is correct or not.
RewriteEngine On
RewriteBase /
#Redirect non-www to wwwRewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]# Redirect to HTTPS
RewriteCond %{HTTPS} off
RewriteRule (.*) https://www.pnrstatusbuzz.in/ %{REQUEST_URI}Thank You.