Looking to hire someone to make whole site to be https. Was a fresh install of shadows readytheme that I customized slightly. Has maybe a couple of hard coded links.
Announcement
Collapse
No announcement yet.
Make site all https
Collapse
X
-
Did you check the "force https" boxes on all the pages? Are all your links and form actions coded with https and/or relative urls (/home.html, etc...)?
After that all you need to do is put some simple code at the top of your .htaccess file. This particular code block also forces www but you can remove the last two lines if you don't need that.
### force https and www
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
If you need help let me know, probably would be a fairly quick job.
- 1 like
-
Leslie Kirk
Miva Certified Developer
Miva Merchant Specialist since 1997
Previously of Webs Your Way (aka Leslie Nord leslienord)
Email me: [email protected]
www.lesliekirk.com
Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr
Comment
Comment